home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / linux / tools / gas-1.38 / gas-1.38 / m68k.c < prev    next >
C/C++ Source or Header  |  1993-02-09  |  81KB  |  3,576 lines

  1. #if defined(m68851) || defined(m68030) || defined(m68040)
  2. #define MMU
  3. #else
  4. #undef MMU
  5. #endif
  6. /* m68k.c  All the m68020 specific stuff in one convenient, huge,
  7.    slow to compile, easy to find file.
  8.    Copyright (C) 1987 Free Software Foundation, Inc.
  9.  
  10. This file is part of GAS, the GNU Assembler.
  11.  
  12. GAS is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 1, or (at your option)
  15. any later version.
  16.  
  17. GAS is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. GNU General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with GAS; see the file COPYING.  If not, write to
  24. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  25.  
  26. #include <ctype.h>
  27.  
  28. #include "m68k-opcode.h"
  29. #include "as.h"
  30. #include "obstack.h"
  31. #include "frags.h"
  32. #include "struc-symbol.h"
  33. #include "flonum.h"
  34. #include "expr.h"
  35. #include "hash.h"
  36. #include "md.h"
  37. #include "m68k.h"
  38. char *index();
  39.  
  40. #ifdef M_SUN
  41. /* This variable contains the value to write out at the beginning of
  42.    the a.out file.  The 2<<16 means that this is a 68020 file instead
  43.    of an old-style 68000 file */
  44.  
  45. long omagic = 2<<16|OMAGIC;    /* Magic byte for header file */
  46. #else
  47. long omagic = OMAGIC;
  48. #endif
  49.  
  50.  
  51. /* This array holds the chars that always start a comment.  If the
  52.    pre-processor is disabled, these aren't very useful */
  53. const char comment_chars[] = "|";
  54.  
  55. /* This array holds the chars that only start a comment at the beginning of
  56.    a line.  If the line seems to have the form '# 123 filename'
  57.    .line and .file directives will appear in the pre-processed output */
  58. /* Note that input_file.c hand checks for '#' at the beginning of the
  59.    first line of the input file.  This is because the compiler outputs
  60.    #NO_APP at the beginning of its output. */
  61. /* Also note that '/*' will always start a comment */
  62. const char line_comment_chars[] = "#";
  63.  
  64. /* Chars that can be used to separate mant from exp in floating point nums */
  65. const char EXP_CHARS[] = "eE";
  66.  
  67. /* Chars that mean this number is a floating point constant */
  68. /* As in 0f12.456 */
  69. /* or    0d1.2345e12 */
  70.  
  71. const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
  72.  
  73. /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
  74.    changed in read.c .  Ideally it shouldn't have to know about it at all,
  75.    but nothing is ideal around here.
  76.  */
  77.  
  78. void fix_new();
  79. void install_operand();
  80. void install_gen_operand();
  81.  
  82. /* Its an arbitrary name:  This means I don't approve of it */
  83. /* See flames below */
  84. struct obstack robyn;
  85.  
  86. #define TAB(x,y)    (((x)<<2)+(y))
  87. #define TABTYPE(xy)     ((xy) >> 2)
  88. #define BYTE        0
  89. #define SHORT        1
  90. #define LONG        2
  91. #define SZ_UNDEF    3
  92.  
  93. #define BRANCH        1
  94. #define FBRANCH        2
  95. #define PCREL        3
  96. #define BCC68000        4
  97. #define DBCC            5
  98. #define PCLEA        6
  99.  
  100. /* BCC68000 is for patching in an extra jmp instruction for long offsets
  101.    on the 68000.  The 68000 doesn't support long branches with branchs */
  102.  
  103. /* This table desribes how you change sizes for the various types of variable
  104.    size expressions.  This version only supports two kinds. */
  105.  
  106. /* Note that calls to frag_var need to specify the maximum expansion needed */
  107. /* This is currently 10 bytes for DBCC */
  108.  
  109. /* The fields are:
  110.     How far Forward this mode will reach:
  111.     How far Backward this mode will reach:
  112.     How many bytes this mode will add to the size of the frag
  113.     Which mode to go to if the offset won't fit in this one
  114.  */
  115. const relax_typeS
  116. md_relax_table[] = {
  117. { 1,        1,        0,    0 },    /* First entries aren't used */
  118. { 1,        1,        0,    0 },    /* For no good reason except */
  119. { 1,        1,        0,    0 },    /* that the VAX doesn't either */
  120. { 1,        1,        0,    0 },
  121.  
  122. { (127),    (-128),        0,    TAB(BRANCH,SHORT)},
  123. { (32767),    (-32768),    2,    TAB(BRANCH,LONG) },
  124. { 0,        0,        4,    0 },
  125. { 1,        1,        0,    0 },
  126.  
  127. { 1,        1,        0,    0 },    /* FBRANCH doesn't come BYTE */
  128. { (32767),    (-32768),    2,    TAB(FBRANCH,LONG)},
  129. { 0,        0,        4,    0 },
  130. { 1,        1,        0,    0 },
  131.  
  132. { 1,        1,        0,    0 },    /* PCREL doesn't come BYTE */
  133. { (32767),    (-32768),    2,    TAB(PCREL,LONG)},
  134. { 0,        0,        4,    0 },
  135. { 1,        1,        0,    0 },
  136.  
  137. { (127),    (-128),        0,    TAB(BCC68000,SHORT)},
  138. { (32767),    (-32768),    2,    TAB(BCC68000,LONG) },
  139. { 0,        0,        6,    0 },    /* jmp long space */
  140. { 1,        1,        0,    0 },
  141.  
  142. { 1,        1,        0,    0 },    /* DBCC doesn't come BYTE */
  143. { (32767),    (-32768),    2,    TAB(DBCC,LONG) },
  144. { 0,        0,        10,    0 },    /* bra/jmp long space */
  145. { 1,        1,        0,    0 },
  146.  
  147. { 1,        1,        0,    0 },    /* PCLEA doesn't come BYTE */
  148. { 32767,    -32768,        2,    TAB(PCLEA,LONG) },
  149. { 0,        0,        6,    0 },
  150. { 1,        1,        0,    0 },
  151.  
  152. };
  153.  
  154. void    s_data1(),    s_data2(),    s_even(),    s_space();
  155. void    s_proc(),    float_cons();
  156.  
  157. /* These are the machine dependent pseudo-ops.  These are included so
  158.    the assembler can work on the output from the SUN C compiler, which
  159.    generates these.
  160.  */
  161.  
  162. /* This table describes all the machine specific pseudo-ops the assembler
  163.    has to support.  The fields are:
  164.        pseudo-op name without dot
  165.       function to call to execute this pseudo-op
  166.       Integer arg to pass to the function
  167.  */
  168. const pseudo_typeS md_pseudo_table[] = {
  169.     { "data1",    s_data1,    0    },
  170.     { "data2",    s_data2,    0    },
  171.     { "even",    s_even,        0    },
  172.     { "skip",    s_space,    0    },
  173.     { "proc",    s_proc,        0    },
  174.     { 0,        0,        0    }
  175. };
  176.  
  177.  
  178. /* #define isbyte(x)    ((x)>=-128 && (x)<=127) */
  179. /* #define isword(x)    ((x)>=-32768 && (x)<=32767) */
  180.  
  181. #define issbyte(x)    ((x)>=-128 && (x)<=127)
  182. #define isubyte(x)    ((x)>=0 && (x)<=255)
  183. #define issword(x)    ((x)>=-32768 && (x)<=32767)
  184. #define isuword(x)    ((x)>=0 && (x)<=65535)
  185.  
  186. #define isbyte(x)    ((x)>=-128 && (x)<=255)
  187. #define isword(x)    ((x)>=-32768 && (x)<=65535)
  188. #define islong(x)    (1)
  189.  
  190. extern char *input_line_pointer;
  191.  
  192. /* Operands we can parse:  (And associated modes)
  193.  
  194. numb:    8 bit num
  195. numw:    16 bit num
  196. numl:    32 bit num
  197. dreg:    data reg 0-7
  198. reg:    address or data register
  199. areg:    address register
  200. apc:    address register, PC, ZPC or empty string
  201. num:    16 or 32 bit num
  202. num2:    like num
  203. sz:    w or l        if omitted, l assumed
  204. scale:    1 2 4 or 8    if omitted, 1 assumed
  205.  
  206. 7.4 IMMED #num                --> NUM
  207. 0.? DREG  dreg                --> dreg
  208. 1.? AREG  areg                --> areg
  209. 2.? AINDR areg@                --> *(areg)
  210. 3.? AINC  areg@+            --> *(areg++)
  211. 4.? ADEC  areg@-            --> *(--areg)
  212. 5.? AOFF  apc@(numw)            --> *(apc+numw)    -- empty string and ZPC not allowed here
  213. 6.? AINDX apc@(num,reg:sz:scale)    --> *(apc+num+reg*scale)
  214. 6.? AINDX apc@(reg:sz:scale)        --> same, with num=0
  215. 6.? APODX apc@(num)@(num2,reg:sz:scale)    --> *(*(apc+num)+num2+reg*scale)
  216. 6.? APODX apc@(num)@(reg:sz:scale)    --> same, with num2=0
  217. 6.? AMIND apc@(num)@(num2)        --> *(*(apc+num)+num2) (previous mode without an index reg)
  218. 6.? APRDX apc@(num,reg:sz:scale)@(num2)    --> *(*(apc+num+reg*scale)+num2)
  219. 6.? APRDX apc@(reg:sz:scale)@(num2)    --> same, with num=0
  220. 7.0 ABSL  num:sz            --> *(num)
  221.           num                --> *(num) (sz L assumed)
  222. *** MSCR  otherreg            --> Magic
  223. With -l option
  224. 5.? AOFF  apc@(num)            --> *(apc+num) -- empty string and ZPC not allowed here still
  225.  
  226. examples:
  227.     #foo    #0x35    #12
  228.     d2
  229.     a4
  230.     a3@
  231.     a5@+
  232.     a6@-
  233.     a2@(12)    pc@(14)
  234.     a1@(5,d2:w:1)    @(45,d6:l:4)
  235.     pc@(a2)        @(d4)
  236.     etc . . .
  237.  
  238.  
  239. #name@(numw)    -->turn into PC rel mode
  240. apc@(num8,reg:sz:scale)        --> *(apc+num8+reg*scale)
  241.  
  242. */
  243.  
  244. #define IMMED    1
  245. #define DREG    2
  246. #define AREG    3
  247. #define AINDR    4
  248. #define ADEC    5
  249. #define AINC    6
  250. #define AOFF    7
  251. #define AINDX    8
  252. #define APODX    9
  253. #define AMIND    10
  254. #define APRDX    11
  255. #define ABSL    12
  256. #define MSCR    13
  257. #define REGLST    14
  258.  
  259. #define FAIL    0
  260. #define OK    1
  261.  
  262. /* DATA and ADDR have to be contiguous, so that reg-DATA gives 0-7==data reg,
  263.    8-15==addr reg for operands that take both types */
  264. #define DATA    1        /*   1- 8 == data registers 0-7 */
  265. #define ADDR    (DATA+8)    /*   9-16 == address regs 0-7 */
  266. #define FPREG    (ADDR+8)    /*  17-24 Eight FP registers */
  267. #define COPNUM    (FPREG+8)    /*  25-32 Co-processor #1-#8 */
  268.  
  269. #define PC    (COPNUM+8)    /*  33 Program counter */
  270. #define ZPC    (PC+1)        /*  34 Hack for Program space, but 0 addressing */
  271. #define SR    (ZPC+1)        /*  35 Status Reg */
  272. #define CCR    (SR+1)        /*  36 Condition code Reg */
  273.  
  274. /* These have to be in order for the movec instruction to work. */
  275. #define USP    (CCR+1)        /*  37 User Stack Pointer */
  276. #define ISP    (USP+1)        /*  38 Interrupt stack pointer */
  277. #define SFC    (ISP+1)        /*  39 */
  278. #define DFC    (SFC+1)        /*  40 */
  279. #define CACR    (DFC+1)        /*  41 */
  280. #define VBR    (CACR+1)    /*  42 */
  281. #define CAAR    (VBR+1)        /*  43 */
  282. #define MSP    (CAAR+1)    /*  44 */
  283.  
  284. #define FPI    (MSP+1)        /* 45 */
  285. #define FPS    (FPI+1)        /* 46 */
  286. #define FPC    (FPS+1)        /* 47 */
  287. /*
  288.  * these defines should be in m68k.c but
  289.  * i put them here to keep all the m68851 stuff
  290.  * together -rab
  291.  * JF--Make sure these #s don't clash with the ones in m68k.c
  292.  * That would be BAD.
  293.  */
  294. #define TC    (FPC+1)        /* 48 */
  295. #define DRP    (TC+1)        /* 49 */
  296. #define SRP    (DRP+1)        /* 50 */
  297. #define CRP    (SRP+1)        /* 51 */
  298. #define CAL    (CRP+1)        /* 52 */
  299. #define VAL    (CAL+1)        /* 53 */
  300. #define SCC    (VAL+1)        /* 54 */
  301. #define AC    (SCC+1)        /* 55 */
  302. #define BAD    (AC+1)        /* 56,57,58,59, 60,61,62,63 */
  303. #define BAC    (BAD+8)        /* 64,65,66,67, 68,69,70,71 */
  304. #define PSR    (BAC+8)        /* 72 */
  305. #define PCSR    (PSR+1)        /* 73 */
  306. #define TT0    (PCSR+1)    /* 74 */
  307. #define TT1    (TT0+1)        /* 75 */
  308.  
  309.  
  310. /* Note that COPNUM==processor #1 -- COPNUM+7==#8, which stores as 000 */
  311. /* I think. . .  */
  312.  
  313. #define    SP    ADDR+7
  314.  
  315. /* JF these tables here are for speed at the expense of size */
  316. /* You can replace them with the #if 0 versions if you really
  317.    need space and don't mind it running a bit slower */
  318.  
  319. static char mklower_table[256];
  320. #define mklower(c) (mklower_table[(unsigned char)(c)])
  321. static char notend_table[256];
  322. static char alt_notend_table[256];
  323. #define notend(s) ( !(notend_table[(unsigned char)(*s)] || (*s==':' &&\
  324.  alt_notend_table[(unsigned char)(s[1])])))
  325.  
  326. #if 0
  327. #define mklower(c)    (isupper(c) ? tolower(c) : c)
  328. #endif
  329.  
  330.  
  331. struct m68k_exp {
  332.     char    *e_beg;
  333.     char    *e_end;
  334.     expressionS e_exp;
  335.     short    e_siz;        /* 0== default 1==short/byte 2==word 3==long */
  336. };
  337.  
  338. /* Internal form of an operand.  */
  339. struct m68k_op {
  340.     char    *error;        /* Couldn't parse it */
  341.     int    mode;        /* What mode this instruction is in.  */
  342.     unsigned long int    reg;        /* Base register */
  343.     struct m68k_exp *con1;
  344.     int    ireg;        /* Index register */
  345.     int    isiz;        /* 0==unspec  1==byte(?)  2==short  3==long  */
  346.     int    imul;        /* Multipy ireg by this (1,2,4,or 8) */
  347.     struct    m68k_exp *con2;
  348. };
  349.  
  350. /* internal form of a 68020 instruction */
  351. struct m68_it {
  352.     char    *error;
  353.     char    *args;        /* list of opcode info */
  354.     int    numargs;
  355.  
  356.     int    numo;        /* Number of shorts in opcode */
  357.     short    opcode[11];
  358.  
  359.     struct m68k_op operands[6];
  360.  
  361.     int    nexp;        /* number of exprs in use */
  362.     struct m68k_exp exprs[4];
  363.  
  364.     int    nfrag;        /* Number of frags we have to produce */
  365.     struct {
  366.         int fragoff;    /* Where in the current opcode[] the frag ends */
  367.         symbolS *fadd;
  368.         long int foff;
  369.         int fragty;
  370.     } fragb[4];
  371.  
  372.     int    nrel;        /* Num of reloc strucs in use */
  373.     struct    {
  374.         int    n;
  375.         symbolS    *add,
  376.             *sub;
  377.         long int off;
  378.         char    wid;
  379.         char    pcrel;
  380.     } reloc[5];        /* Five is enough??? */
  381. };
  382.  
  383. struct m68_it the_ins;        /* the instruction being assembled */
  384.  
  385.  
  386. /* Macros for adding things to the m68_it struct */
  387.  
  388. #define addword(w)    the_ins.opcode[the_ins.numo++]=(w)
  389.  
  390. /* Like addword, but goes BEFORE general operands */
  391. #define insop(w)    {int z;\
  392.  for(z=the_ins.numo;z>opcode->m_codenum;--z)\
  393.    the_ins.opcode[z]=the_ins.opcode[z-1];\
  394.  for(z=0;z<the_ins.nrel;z++)\
  395.    the_ins.reloc[z].n+=2;\
  396.  the_ins.opcode[opcode->m_codenum]=w;\
  397.  the_ins.numo++;\
  398. }
  399.  
  400.  
  401. #define add_exp(beg,end) (\
  402.     the_ins.exprs[the_ins.nexp].e_beg=beg,\
  403.     the_ins.exprs[the_ins.nexp].e_end=end,\
  404.     &the_ins.exprs[the_ins.nexp++]\
  405. )
  406.  
  407.  
  408. /* The numo+1 kludge is so we can hit the low order byte of the prev word. Blecch*/
  409. #define add_fix(width,exp,pc_rel) {\
  410.     the_ins.reloc[the_ins.nrel].n= ((width)=='B') ? (the_ins.numo*2-1) : \
  411.         (((width)=='b') ? ((the_ins.numo-1)*2) : (the_ins.numo*2));\
  412.     the_ins.reloc[the_ins.nrel].add=adds((exp));\
  413.     the_ins.reloc[the_ins.nrel].sub=subs((exp));\
  414.     the_ins.reloc[the_ins.nrel].off=offs((exp));\
  415.     the_ins.reloc[the_ins.nrel].wid=width;\
  416.     the_ins.reloc[the_ins.nrel++].pcrel=pc_rel;\
  417. }
  418.  
  419. #define add_frag(add,off,type)  {\
  420.     the_ins.fragb[the_ins.nfrag].fragoff=the_ins.numo;\
  421.     the_ins.fragb[the_ins.nfrag].fadd=add;\
  422.     the_ins.fragb[the_ins.nfrag].foff=off;\
  423.     the_ins.fragb[the_ins.nfrag++].fragty=type;\
  424. }
  425.  
  426. #define isvar(exp)    ((exp) && (adds(exp) || subs(exp)))
  427.  
  428. #define seg(exp)    ((exp)->e_exp.X_seg)
  429. #define adds(exp)    ((exp)->e_exp.X_add_symbol)
  430. #define subs(exp)    ((exp)->e_exp.X_subtract_symbol)
  431. #define offs(exp)    ((exp)->e_exp.X_add_number)
  432.  
  433.  
  434. struct m68_incant {
  435.     char *m_operands;
  436.     unsigned long m_opcode;
  437.     short m_opnum;
  438.     short m_codenum;
  439.     struct m68_incant *m_next;
  440. };
  441.  
  442. #define getone(x)    ((((x)->m_opcode)>>16)&0xffff)
  443. #define gettwo(x)    (((x)->m_opcode)&0xffff)
  444.  
  445.  
  446. /* JF modified this to handle cases where the first part of a symbol name
  447.    looks like a register */
  448.  
  449. int
  450. m68k_reg_parse(ccp)
  451. register char **ccp;
  452. {
  453.     register char c1,
  454.         c2,
  455.         c3,
  456.         c4,
  457.         c5;
  458.     register int n = 0,
  459.         ret = FAIL;
  460.  
  461.     c1=mklower(ccp[0][0]);
  462. #ifdef REGISTER_PREFIX
  463.     if(c1!=REGISTER_PREFIX)
  464.         return FAIL;
  465.     c1=mklower(ccp[0][1]);
  466.     c2=mklower(ccp[0][2]);
  467.     c3=mklower(ccp[0][3]);
  468.     c4=mklower(ccp[0][4]);
  469.     c5=mklower(ccp[0][5]);
  470. #else
  471.     c2=mklower(ccp[0][1]);
  472.     c3=mklower(ccp[0][2]);
  473.     c4=mklower(ccp[0][3]);
  474.     c5=mklower(ccp[0][4]);
  475. #endif
  476.     switch(c1) {
  477.     case 'a':
  478.         if(c2>='0' && c2<='7') {
  479.             n=2;
  480.             ret=ADDR+c2-'0';
  481.         }
  482. #ifdef MMU
  483.         else if (c2 == 'c') {
  484.             n = 2;
  485.             ret = AC;
  486.         }
  487. #endif
  488.         break;
  489. #ifdef MMU
  490.     case 'b':
  491.         if (c2 == 'a') {
  492.             if (c3 == 'd') {
  493.                 if (c4 >= '0' && c4 <= '7') {
  494.                     n = 4;
  495.                     ret = BAD + c4 - '0';
  496.                 }
  497.             }
  498.             if (c3 == 'c') {
  499.                 if (c4 >= '0' && c4 <= '7') {
  500.                     n = 4;
  501.                     ret = BAC + c4 - '0';
  502.                 }
  503.             }
  504.         }
  505.         break;
  506. #endif
  507.     case 'c':
  508. #ifdef MMU
  509.         if (c2 == 'a' && c3 == 'l') {
  510.             n = 3;
  511.             ret = CAL;
  512.         } else
  513. #endif
  514.             /* This supports both CCR and CC as the ccr reg. */
  515.         if(c2=='c' && c3=='r') {
  516.             n=3;
  517.             ret = CCR;
  518.         } else if(c2=='c') {
  519.             n=2;
  520.             ret = CCR;
  521.         } else if(c2=='a' && (c3=='a' || c3=='c') && c4=='r') {
  522.             n=4;
  523.             ret = c3=='a' ? CAAR : CACR;
  524.         }
  525. #ifdef MMU
  526.         else if (c2 == 'r' && c3 == 'p') {
  527.             n = 3;
  528.             ret = (CRP);
  529.         }
  530. #endif
  531.         break;
  532.     case 'd':
  533.         if(c2>='0' && c2<='7') {
  534.             n=2;
  535.             ret = DATA+c2-'0';
  536.         } else if(c2=='f' && c3=='c') {
  537.             n=3;
  538.             ret = DFC;
  539.         }
  540. #ifdef MMU
  541.         else if (c2 == 'r' && c3 == 'p') {
  542.             n = 3;
  543.             ret = (DRP);
  544.         }
  545. #endif
  546.         break;
  547.     case 'f':
  548.         if(c2=='p') {
  549.             if(c3>='0' && c3<='7') {
  550.                 n=3;
  551.                 ret = FPREG+c3-'0';
  552.                 if(c4==':')
  553.                     ccp[0][3]=',';
  554.             } else if(c3=='i') {
  555.                 n=3;
  556.                 ret = FPI;
  557.             } else if(c3=='s') {
  558.                 n= (c4 == 'r' ? 4 : 3);
  559.                 ret = FPS;
  560.             } else if(c3=='c') {
  561.                 n= (c4 == 'r' ? 4 : 3);
  562.                 ret = FPC;
  563.             }
  564.         }
  565.         break;
  566.     case 'i':
  567.         if(c2=='s' && c3=='p') {
  568.             n=3;
  569.             ret = ISP;
  570.         }
  571.         break;
  572.     case 'm':
  573.         if(c2=='s' && c3=='p') {
  574.             n=3;
  575.             ret = MSP;
  576.         } else
  577.         if (c2 == 'm' && c3 == 'u' && c4 =='s' && c5 == 'r') {
  578.             n = 5;
  579.             ret = PSR;
  580.         }
  581.         break;
  582.     case 'p':
  583.         if(c2=='c') {
  584. #ifdef MMU
  585.             if(c3 == 's' && c4=='r') {
  586.                 n=4;
  587.                 ret = (PCSR);
  588.             } else
  589. #endif
  590.             {
  591.                 n=2;
  592.                 ret = PC;
  593.             }
  594.         }
  595. #ifdef MMU
  596.         else if (c2 == 's' && c3 == 'r') {
  597.             n = 3;
  598.             ret = (PSR);
  599.         }
  600. #endif
  601.         break;
  602.     case 's':
  603. #ifdef MMU
  604.         if (c2 == 'c' && c3 == 'c') {
  605.             n = 3;
  606.             ret = (SCC);
  607.         } else if (c2 == 'r' && c3 == 'p') {
  608.             n = 3;
  609.             ret = (SRP);
  610.         } else
  611. #endif
  612.         if(c2=='r') {
  613.             n=2;
  614.             ret = SR;
  615.         } else if(c2=='p') {
  616.             n=2;
  617.             ret = ADDR+7;
  618.         } else if(c2=='f' && c3=='c') {
  619.             n=3;
  620.             ret = SFC;
  621.         }
  622.         break;
  623. #ifdef MMU
  624.     case 't':
  625.         if(c2 == 'c') {
  626.             n=2;
  627.             ret=TC;
  628.         } else if (c2 == 't' && (c3 == '0' || c3 == '1')) {
  629.             n=3;
  630.             ret= (c3 == '0') ? TT0 : TT1;
  631.         }
  632.         break;
  633. #endif
  634.     case 'u':
  635.         if(c2=='s' && c3=='p') {
  636.             n=3;
  637.             ret = USP;
  638.         }
  639.         break;
  640.     case 'v':
  641. #ifdef MMU
  642.         if (c2 == 'a' && c3 == 'l') {
  643.             n = 3;
  644.             ret = (VAL);
  645.         } else
  646. #endif
  647.         if(c2=='b' && c3=='r') {
  648.             n=3;
  649.             ret = VBR;
  650.         }
  651.         break;
  652.     case 'z':
  653.         if(c2=='p' && c3=='c') {
  654.             n=3;
  655.             ret = ZPC;
  656.         }
  657.         break;
  658.     default:
  659.         break;
  660.     }
  661.     if(n) {
  662. #ifdef REGISTER_PREFIX
  663.         n++;
  664. #endif
  665.         if(isalnum(ccp[0][n]) || ccp[0][n]=='_')
  666.             ret=FAIL;
  667.         else
  668.             ccp[0]+=n;
  669.     } else
  670.         ret = FAIL;
  671.     return ret;
  672. }
  673.  
  674. #define SKIP_WHITE()    { str++; if(*str==' ') str++;}
  675.  
  676. int
  677. m68k_ip_op(str,opP)
  678. char *str;
  679. register struct m68k_op *opP;
  680. {
  681.     char    *strend;
  682.     long    i;
  683.     char    *parse_index();
  684.  
  685.     if(*str==' ')
  686.         str++;
  687.         /* Find the end of the string */
  688.     if(!*str) {
  689.         /* Out of gas */
  690.         opP->error="Missing operand";
  691.         return FAIL;
  692.     }
  693.     for(strend=str;*strend;strend++)
  694.         ;
  695.     --strend;
  696.  
  697.         /* Guess what:  A constant.  Shar and enjoy */
  698.     if(*str=='#') {
  699.         str++;
  700.         opP->con1=add_exp(str,strend);
  701.         opP->mode=IMMED;
  702.         return OK;
  703.     }
  704.     i=m68k_reg_parse(&str);
  705.     if((i==FAIL || *str!='\0') && *str!='@') {
  706.         char *stmp;
  707.  
  708.         if(i!=FAIL && (*str=='/' || *str=='-')) {
  709.             opP->mode=REGLST;
  710.             return get_regs(i,str,opP);
  711.         }
  712.         if(stmp=index(str,'@')) {
  713.             opP->con1=add_exp(str,stmp-1);
  714.             if(stmp==strend) {
  715.                 opP->mode=AINDX;
  716.                 return OK;
  717.             }
  718.             stmp++;
  719.             if(*stmp++!='(' || *strend--!=')') {
  720.                 opP->error="Malformed operand";
  721.                 return FAIL;
  722.             }
  723.             i=try_index(&stmp,opP);
  724.             opP->con2=add_exp(stmp,strend);
  725.             if(i==FAIL) opP->mode=AMIND;
  726.             else opP->mode=APODX;
  727.             return OK;
  728.         }
  729.         opP->mode=ABSL;
  730.         opP->con1=add_exp(str,strend);
  731.         return OK;
  732.     }
  733.     opP->reg=i;
  734.     if(*str=='\0') {
  735.         if(i>=DATA+0 && i<=DATA+7)
  736.             opP->mode=DREG;
  737.         else if(i>=ADDR+0 && i<=ADDR+7)
  738.             opP->mode=AREG;
  739.         else
  740.             opP->mode=MSCR;
  741.         return OK;
  742.     }
  743.     if((i<ADDR+0 || i>ADDR+7) && i!=PC && i!=ZPC && i!=FAIL) {    /* Can't indirect off non address regs */
  744.         opP->error="Invalid indirect register";
  745.         return FAIL;
  746.     }
  747.     if(*str!='@')
  748.         abort();
  749.     str++;
  750.     switch(*str) {
  751.     case '\0':
  752.         opP->mode=AINDR;
  753.         return OK;
  754.     case '-':
  755.         opP->mode=ADEC;
  756.         return OK;
  757.     case '+':
  758.         opP->mode=AINC;
  759.         return OK;
  760.     case '(':
  761.         str++;
  762.         break;
  763.     default:
  764.         opP->error="Junk after indirect";
  765.         return FAIL;
  766.     }
  767.         /* Some kind of indexing involved.  Lets find out how bad it is */
  768.     i=try_index(&str,opP);
  769.         /* Didn't start with an index reg, maybe its offset or offset,reg */
  770.     if(i==FAIL) {
  771.         char *beg_str;
  772.  
  773.         beg_str=str;
  774.         for(i=1;i;) {
  775.             switch(*str++) {
  776.             case '\0':
  777.                 opP->error="Missing )";
  778.                 return FAIL;
  779.             case ',': i=0; break;
  780.             case '(': i++; break;
  781.             case ')': --i; break;
  782.             }
  783.         }
  784.         /* if(str[-3]==':') {
  785.             int siz;
  786.  
  787.             switch(str[-2]) {
  788.             case 'b':
  789.             case 'B':
  790.                 siz=1;
  791.                 break;
  792.             case 'w':
  793.             case 'W':
  794.                 siz=2;
  795.                 break;
  796.             case 'l':
  797.             case 'L':
  798.                 siz=3;
  799.                 break;
  800.             default:
  801.                 opP->error="Specified size isn't :w or :l";
  802.                 return FAIL;
  803.             }
  804.             opP->con1=add_exp(beg_str,str-4);
  805.             opP->con1->e_siz=siz;
  806.         } else */
  807.             opP->con1=add_exp(beg_str,str-2);
  808.             /* Should be offset,reg */
  809.         if(str[-1]==',') {
  810.             i=try_index(&str,opP);
  811.             if(i==FAIL) {
  812.                 opP->error="Malformed index reg";
  813.                 return FAIL;
  814.             }
  815.         }
  816.     }
  817.         /* We've now got offset)   offset,reg)   or    reg) */
  818.  
  819.     if(*str=='\0') {
  820.         /* Th-the-thats all folks */
  821.         if(opP->reg==FAIL) opP->mode=AINDX;    /* Other form of indirect */
  822.         else if(opP->ireg==FAIL) opP->mode=AOFF;
  823.         else opP->mode=AINDX;
  824.         return OK;
  825.     }
  826.         /* Next thing had better be another @ */
  827.     if(*str!='@' || str[1]!='(') {
  828.         opP->error="junk after indirect";
  829.         return FAIL;
  830.     }
  831.     str+=2;
  832.     if(opP->ireg!=FAIL) {
  833.         opP->mode=APRDX;
  834.         i=try_index(&str,opP);
  835.         if(i!=FAIL) {
  836.             opP->error="Two index registers!  not allowed!";
  837.             return FAIL;
  838.         }
  839.     } else
  840.         i=try_index(&str,opP);
  841.     if(i==FAIL) {
  842.         char *beg_str;
  843.  
  844.         beg_str=str;
  845.         for(i=1;i;) {
  846.             switch(*str++) {
  847.             case '\0':
  848.                 opP->error="Missing )";
  849.                 return FAIL;
  850.             case ',': i=0; break;
  851.             case '(': i++; break;
  852.             case ')': --i; break;
  853.             }
  854.         }
  855.         opP->con2=add_exp(beg_str,str-2);
  856.         if(str[-1]==',') {
  857.             if(opP->ireg!=FAIL) {
  858.                 opP->error="Can't have two index regs";
  859.                 return FAIL;
  860.             }
  861.             i=try_index(&str,opP);
  862.             if(i==FAIL) {
  863.                 opP->error="malformed index reg";
  864.                 return FAIL;
  865.             }
  866.             opP->mode=APODX;
  867.         } else if(opP->ireg!=FAIL)
  868.             opP->mode=APRDX;
  869.         else
  870.             opP->mode=AMIND;
  871.     } else
  872.         opP->mode=APODX;
  873.     if(*str!='\0') {
  874.         opP->error="Junk after indirect";
  875.         return FAIL;
  876.     }
  877.     return OK;
  878. }
  879.  
  880. int
  881. try_index(s,opP)
  882. char **s;
  883. struct m68k_op *opP;
  884. {
  885.     register int    i;
  886.     char    *ss;
  887. #define SKIP_W()    { ss++; if(*ss==' ') ss++;}
  888.  
  889.     ss= *s;
  890.     /* SKIP_W(); */
  891.     i=m68k_reg_parse(&ss);
  892.     if(!(i>=DATA+0 && i<=ADDR+7)) {    /* if i is not DATA or ADDR reg */
  893.         *s=ss;
  894.         return FAIL;
  895.     }
  896.     opP->ireg=i;
  897.     /* SKIP_W(); */
  898.     if(*ss==')') {
  899.         opP->isiz=0;
  900.         opP->imul=1;
  901.         SKIP_W();
  902.         *s=ss;
  903.         return OK;
  904.     }
  905.     if(*ss!=':') {
  906.         opP->error="Missing : in index register";
  907.         *s=ss;
  908.         return FAIL;
  909.     }
  910.     SKIP_W();
  911.     switch(*ss) {
  912.     case 'w':
  913.     case 'W':
  914.         opP->isiz=2;
  915.         break;
  916.     case 'l':
  917.     case 'L':
  918.         opP->isiz=3;
  919.         break;
  920.     default:
  921.         opP->error="Index register size spec not :w or :l";
  922.         *s=ss;
  923.         return FAIL;
  924.     }
  925.     SKIP_W();
  926.     if(*ss==':') {
  927.         SKIP_W();
  928.         switch(*ss) {
  929.         case '1':
  930.         case '2':
  931.         case '4':
  932.         case '8':
  933.             opP->imul= *ss-'0';
  934.             break;
  935.         default:
  936.             opP->error="index multiplier not 1, 2, 4 or 8";
  937.             *s=ss;
  938.             return FAIL;
  939.         }
  940.         SKIP_W();
  941.     } else opP->imul=1;
  942.     if(*ss!=')') {
  943.         opP->error="Missing )";
  944.         *s=ss;
  945.         return FAIL;
  946.     }
  947.     SKIP_W();
  948.     *s=ss;
  949.     return OK;
  950. }
  951.  
  952. #ifdef TEST1    /* TEST1 tests m68k_ip_op(), which parses operands */
  953. main()
  954. {
  955.     char buf[128];
  956.     struct m68k_op thark;
  957.  
  958.     for(;;) {
  959.         if(!gets(buf))
  960.             break;
  961.         bzero(&thark,sizeof(thark));
  962.         if(!m68k_ip_op(buf,&thark)) printf("FAIL:");
  963.         if(thark.error)
  964.             printf("op1 error %s in %s\n",thark.error,buf);
  965.         printf("mode %d, reg %d, ",thark.mode,thark.reg);
  966.         if(thark.b_const)
  967.             printf("Constant: '%.*s',",1+thark.e_const-thark.b_const,thark.b_const);
  968.         printf("ireg %d, isiz %d, imul %d ",thark.ireg,thark.isiz,thark.imul);
  969.         if(thark.b_iadd)
  970.             printf("Iadd: '%.*s'",1+thark.e_iadd-thark.b_iadd,thark.b_iadd);
  971.         printf("\n");
  972.     }
  973.     exit(0);
  974. }
  975.  
  976. #endif
  977.  
  978.  
  979. static struct hash_control*   op_hash = NULL;    /* handle of the OPCODE hash table
  980.                    NULL means any use before m68_ip_begin()
  981.                    will crash */
  982.  
  983.  
  984. /*
  985.  *        m 6 8 _ i p ( )
  986.  *
  987.  * This converts a string into a 68k instruction.
  988.  * The string must be a bare single instruction in sun format
  989.  * with RMS-style 68020 indirects
  990.  *  (example:  )
  991.  *
  992.  * It provides some error messages: at most one fatal error message (which
  993.  * stops the scan) and at most one warning message for each operand.
  994.  * The 68k instruction is returned in exploded form, since we have no
  995.  * knowledge of how you parse (or evaluate) your expressions.
  996.  * We do however strip off and decode addressing modes and operation
  997.  * mnemonic.
  998.  *
  999.  * This function's value is a string. If it is not "" then an internal
  1000.  * logic error was found: read this code to assign meaning to the string.
  1001.  * No argument string should generate such an error string:
  1002.  * it means a bug in our code, not in the user's text.
  1003.  *
  1004.  * You MUST have called m86_ip_begin() once and m86_ip_end() never before using
  1005.  * this function.
  1006.  */
  1007.  
  1008. /* JF this function no longer returns a useful value.  Sorry */
  1009. void
  1010. m68_ip (instring)
  1011. char    *instring;
  1012. {
  1013.     register char *p;
  1014.     register struct m68k_op *opP;
  1015.     register struct m68_incant *opcode;
  1016.     register char *s;
  1017.     register int tmpreg,
  1018.         baseo,
  1019.         outro,
  1020.         nextword;
  1021.     int    siz1,
  1022.         siz2;
  1023.     char    c;
  1024.     int    losing;
  1025.     int    opsfound;
  1026.     char    *crack_operand();
  1027.     LITTLENUM_TYPE words[6];
  1028.     LITTLENUM_TYPE *wordp;
  1029.  
  1030.     if (*instring == ' ')
  1031.         instring++;            /* skip leading whitespace */
  1032.  
  1033.   /* Scan up to end of operation-code, which MUST end in end-of-string
  1034.      or exactly 1 space. */
  1035.     for (p = instring; *p != '\0'; p++)
  1036.         if (*p == ' ')
  1037.             break;
  1038.  
  1039.  
  1040.     if (p == instring) {
  1041.         the_ins.error = "No operator";
  1042.         the_ins.opcode[0] = NULL;
  1043.         /* the_ins.numo=1; */
  1044.         return;
  1045.     }
  1046.  
  1047.   /* p now points to the end of the opcode name, probably whitespace.
  1048.      make sure the name is null terminated by clobbering the whitespace,
  1049.      look it up in the hash table, then fix it back. */   
  1050.     c = *p;
  1051.     *p = '\0';
  1052.     opcode = (struct m68_incant *)hash_find (op_hash, instring);
  1053.     *p = c;
  1054.  
  1055.     if (opcode == NULL) {
  1056.         the_ins.error = "Unknown operator";
  1057.         the_ins.opcode[0] = NULL;
  1058.         /* the_ins.numo=1; */
  1059.         return;
  1060.     }
  1061.  
  1062.   /* found a legitimate opcode, start matching operands */
  1063.     for(opP= &the_ins.operands[0];*p;opP++) {
  1064.         p = crack_operand (p, opP);
  1065.         if(opP->error) {
  1066.             the_ins.error=opP->error;
  1067.             return;
  1068.         }
  1069.     }
  1070.  
  1071.     opsfound=opP- &the_ins.operands[0];
  1072.     /* This ugly hack is to support the floating pt opcodes in their standard form */
  1073.     /* Essentially, we fake a first enty of type COP#1 */
  1074.     if(opcode->m_operands[0]=='I') {
  1075.         int    n;
  1076.  
  1077.         for(n=opsfound;n>0;--n)
  1078.             the_ins.operands[n]=the_ins.operands[n-1];
  1079.  
  1080.         /* bcopy((char *)(&the_ins.operands[0]),(char *)(&the_ins.operands[1]),opsfound*sizeof(the_ins.operands[0])); */
  1081.         bzero((char *)(&the_ins.operands[0]),sizeof(the_ins.operands[0]));
  1082.         the_ins.operands[0].mode=MSCR;
  1083.         the_ins.operands[0].reg=COPNUM;        /* COP #1 */
  1084.         opsfound++;
  1085.     }
  1086.         /* We've got the operands.  Find an opcode that'll
  1087.            accept them */
  1088.     for(losing=0;;) {
  1089.         if(opsfound!=opcode->m_opnum)
  1090.             losing++;
  1091.         else for(s=opcode->m_operands,opP= &the_ins.operands[0];*s && !losing;s+=2,opP++) {
  1092.                 /* Warning: this switch is huge! */
  1093.                 /* I've tried to organize the cases into  this order:
  1094.                    non-alpha first, then alpha by letter.  lower-case goes directly
  1095.                    before uppercase counterpart. */
  1096.                 /* Code with multiple case ...: gets sorted by the lowest case ...
  1097.                    it belongs to.  I hope this makes sense. */
  1098.             switch(*s) {
  1099.             case '!':
  1100.                 if(opP->mode==MSCR || opP->mode==IMMED ||
  1101.  opP->mode==DREG || opP->mode==AREG || opP->mode==AINC || opP->mode==ADEC || opP->mode==REGLST)
  1102.                     losing++;
  1103.                 break;
  1104.  
  1105.             case '#':
  1106.                 if(opP->mode!=IMMED)
  1107.                     losing++;
  1108.                 else {
  1109.                     long t;
  1110.  
  1111.                     t=get_num(opP->con1,80);
  1112.                     if(s[1]=='b' && !isbyte(t))
  1113.                         losing++;
  1114.                     else if(s[1]=='w' && !isword(t))
  1115.                         losing++;
  1116.                 }
  1117.                 break;
  1118.  
  1119.             case '^':
  1120.             case 'T':
  1121.                 if(opP->mode!=IMMED)
  1122.                     losing++;
  1123.                 break;
  1124.  
  1125.             case '$':
  1126.                 if(opP->mode==MSCR || opP->mode==AREG ||
  1127.  opP->mode==IMMED || opP->reg==PC || opP->reg==ZPC || opP->mode==REGLST)
  1128.                     losing++;
  1129.                 break;
  1130.  
  1131.             case '%':
  1132.                 if(opP->mode==MSCR || opP->reg==PC ||
  1133.  opP->reg==ZPC || opP->mode==REGLST)
  1134.                     losing++;
  1135.                 break;
  1136.  
  1137.  
  1138.             case '&':
  1139.                 if(opP->mode==MSCR || opP->mode==DREG ||
  1140.  opP->mode==AREG || opP->mode==IMMED || opP->reg==PC || opP->reg==ZPC ||
  1141.  opP->mode==AINC || opP->mode==ADEC || opP->mode==REGLST)
  1142.                     losing++;
  1143.                 break;
  1144.  
  1145.             case '*':
  1146.                 if(opP->mode==MSCR || opP->mode==REGLST)
  1147.                     losing++;
  1148.                 break;
  1149.  
  1150.             case '+':
  1151.                 if(opP->mode!=AINC)
  1152.                     losing++;
  1153.                 break;
  1154.  
  1155.             case '-':
  1156.                 if(opP->mode!=ADEC)
  1157.                     losing++;
  1158.                 break;
  1159.  
  1160.             case '/':
  1161.                 if(opP->mode==MSCR || opP->mode==AREG ||
  1162.  opP->mode==AINC || opP->mode==ADEC || opP->mode==IMMED || opP->mode==REGLST)
  1163.                     losing++;
  1164.                 break;
  1165.  
  1166.             case ';':
  1167.                 if(opP->mode==MSCR || opP->mode==AREG || opP->mode==REGLST)
  1168.                     losing++;
  1169.                 break;
  1170.  
  1171.             case '?':
  1172.                 if(opP->mode==MSCR || opP->mode==AREG ||
  1173.  opP->mode==AINC || opP->mode==ADEC || opP->mode==IMMED || opP->reg==PC ||
  1174.  opP->reg==ZPC || opP->mode==REGLST)
  1175.                     losing++;
  1176.                 break;
  1177.  
  1178.             case '@':
  1179.                 if(opP->mode==MSCR || opP->mode==AREG ||
  1180.  opP->mode==IMMED || opP->mode==REGLST)
  1181.                     losing++;
  1182.                 break;
  1183.  
  1184.             case '~':        /* For now! (JF FOO is this right?) */
  1185.                 if(opP->mode==MSCR || opP->mode==DREG ||
  1186.  opP->mode==AREG || opP->mode==IMMED || opP->reg==PC || opP->reg==ZPC || opP->mode==REGLST)
  1187.                     losing++;
  1188.                 break;
  1189.  
  1190.             case 'A':
  1191.                 if(opP->mode!=AREG)
  1192.                     losing++;
  1193.                 break;
  1194.  
  1195.             case 'B':    /* FOO */
  1196.                 if(opP->mode!=ABSL)
  1197.                     losing++;
  1198.                 break;
  1199.  
  1200.             case 'C':
  1201.                 if(opP->mode!=MSCR || opP->reg!=CCR)
  1202.                     losing++;
  1203.                 break;
  1204.  
  1205.             case 'd':    /* FOO This mode is a KLUDGE!! */
  1206.                 if(opP->mode!=AOFF && (opP->mode!=ABSL ||
  1207.  opP->con1->e_beg[0]!='(' || opP->con1->e_end[0]!=')'))
  1208.                     losing++;
  1209.                 break;
  1210.  
  1211.             case 'D':
  1212.                 if(opP->mode!=DREG)
  1213.                     losing++;
  1214.                 break;
  1215.  
  1216.             case 'F':
  1217.                 if(opP->mode!=MSCR || opP->reg<(FPREG+0) || opP->reg>(FPREG+7))
  1218.                     losing++;
  1219.                 break;
  1220.  
  1221.             case 'I':
  1222.                 if(opP->mode!=MSCR || opP->reg<COPNUM ||
  1223.  opP->reg>=COPNUM+7)
  1224.                     losing++;
  1225.                 break;
  1226.  
  1227.             case 'J':
  1228.                 if(opP->mode!=MSCR || opP->reg<USP || opP->reg>MSP)
  1229.                     losing++;
  1230.                 break;
  1231.  
  1232.             case 'k':
  1233.                 if(opP->mode!=IMMED)
  1234.                     losing++;
  1235.                 break;
  1236.  
  1237.             case 'l':
  1238.             case 'L':
  1239.                 if(opP->mode==DREG || opP->mode==AREG || opP->mode==FPREG) {
  1240.                     if(s[1]=='8')
  1241.                         losing++;
  1242.                     else {
  1243.                         opP->mode=REGLST;
  1244.                         opP->reg=1<<(opP->reg-DATA);
  1245.                     }
  1246.                 } else if(opP->mode!=REGLST) {
  1247.                     losing++;
  1248.                 } else if(s[1]=='8' && opP->reg&0x0FFffFF)
  1249.                     losing++;
  1250.                 else if(s[1]=='3' && opP->reg&0x7000000)
  1251.                     losing++;
  1252.                 break;
  1253.  
  1254.             case 'M':
  1255.                 if(opP->mode!=IMMED)
  1256.                     losing++;
  1257.                 else {
  1258.                     long t;
  1259.  
  1260.                     t=get_num(opP->con1,80);
  1261.                     if(!issbyte(t) || isvar(opP->con1))
  1262.                         losing++;
  1263.                 }
  1264.                 break;
  1265.  
  1266.             case 'O':
  1267.                 if(opP->mode!=DREG && opP->mode!=IMMED)
  1268.                     losing++;
  1269.                 break;
  1270.  
  1271.             case 'Q':
  1272.                 if(opP->mode!=IMMED)
  1273.                     losing++;
  1274.                 else {
  1275.                     long t;
  1276.  
  1277.                     t=get_num(opP->con1,80);
  1278.                     if(t<1 || t>8 || isvar(opP->con1))
  1279.                         losing++;
  1280.                 }
  1281.                 break;
  1282.  
  1283.             case 'R':
  1284.                 if(opP->mode!=DREG && opP->mode!=AREG)
  1285.                     losing++;
  1286.                 break;
  1287.  
  1288.             case 's':
  1289.                 if(opP->mode!=MSCR || !(opP->reg==FPI || opP->reg==FPS || opP->reg==FPC))
  1290.                     losing++;
  1291.                 break;
  1292.  
  1293.             case 'S':
  1294.                 if(opP->mode!=MSCR || opP->reg!=SR)
  1295.                     losing++;
  1296.                 break;
  1297.  
  1298.             case 'U':
  1299.                 if(opP->mode!=MSCR || opP->reg!=USP)
  1300.                     losing++;
  1301.                 break;
  1302.  
  1303.             /* JF these are out of order.  We could put them
  1304.                in order if we were willing to put up with
  1305.                bunches of #ifdef m68851s in the code */
  1306. #ifdef MMU
  1307.             /* Memory addressing mode used by pflushr */
  1308.             case '|':
  1309.                 if(opP->mode==MSCR || opP->mode==DREG ||
  1310.  opP->mode==AREG || opP->mode==REGLST)
  1311.                     losing++;
  1312.                 break;
  1313.  
  1314.             case 'f':
  1315.                 if (opP->mode != MSCR || (opP->reg != SFC && opP->reg != DFC))
  1316.                     losing++;
  1317.                 break;
  1318.  
  1319.             case 'P':
  1320.                 if (opP->mode != MSCR || (opP->reg != TC && opP->reg != CAL &&
  1321.                     opP->reg != VAL && opP->reg != SCC && opP->reg != AC))
  1322.                     losing++;
  1323.                 break;
  1324.  
  1325.             case 'V':
  1326.                 if (opP->reg != VAL)
  1327.                     losing++;
  1328.                 break;
  1329.  
  1330.             case 'W':
  1331.                 if (opP->mode != MSCR || (opP->reg != DRP && opP->reg != SRP &&
  1332.                     opP->reg != CRP))
  1333.                     losing++;
  1334.                 break;
  1335.  
  1336.             case 'X':
  1337.                 if (opP->mode != MSCR ||
  1338.                     (!(opP->reg >= BAD && opP->reg <= BAD+7) &&
  1339.                      !(opP->reg >= BAC && opP->reg <= BAC+7)))
  1340.                     losing++;
  1341.                 break;
  1342.  
  1343.             case 'Y':
  1344.                 if (opP->reg != PSR)
  1345.                     losing++;
  1346.                 break;
  1347.  
  1348.             case 'Z':
  1349.                 if (opP->reg != PCSR)
  1350.                     losing++;
  1351.                 break;
  1352.             case '3':
  1353.                 if (opP->reg != TT0 && opP->reg != TT1)
  1354.                     losing++;
  1355.                 break;
  1356. #endif
  1357.             default:
  1358.                 as_fatal("Internal error:  Operand mode %c unknown",*s);
  1359.             }
  1360.         }
  1361.         if(!losing)
  1362.             break;
  1363.         opcode=opcode->m_next;
  1364.         if(!opcode) {        /* Fell off the end */
  1365.             the_ins.error="instruction/operands mismatch";
  1366.             return;
  1367.         }
  1368.         losing=0;
  1369.     }
  1370.     the_ins.args=opcode->m_operands;
  1371.     the_ins.numargs=opcode->m_opnum;
  1372.     the_ins.numo=opcode->m_codenum;
  1373.     the_ins.opcode[0]=getone(opcode);
  1374.     the_ins.opcode[1]=gettwo(opcode);
  1375.  
  1376.     for(s=the_ins.args,opP= &the_ins.operands[0];*s;s+=2,opP++) {
  1377.             /* This switch is a doozy.
  1378.                What the first step; its a big one! */
  1379.         switch(s[0]) {
  1380.  
  1381.         case '*':
  1382.         case '~':
  1383.         case '%':
  1384.         case ';':
  1385.         case '@':
  1386.         case '!':
  1387.         case '&':
  1388.         case '$':
  1389.         case '?':
  1390.         case '/':
  1391. #ifdef MMU
  1392.         case '|':
  1393. #endif
  1394.             switch(opP->mode) {
  1395.             case IMMED:
  1396.                 tmpreg=0x3c;    /* 7.4 */
  1397.                 if(index("bwl",s[1])) nextword=get_num(opP->con1,80);
  1398.                 else nextword=nextword=get_num(opP->con1,0);
  1399.                 if(isvar(opP->con1))
  1400.                     add_fix(s[1],opP->con1,0);
  1401.                 switch(s[1]) {
  1402.                 case 'b':
  1403.                     if(!isbyte(nextword))
  1404.                         opP->error="operand out of range";
  1405.                     addword(nextword);
  1406.                     baseo=0;
  1407.                     break;
  1408.                 case 'w':
  1409.                     if(!isword(nextword))
  1410.                         opP->error="operand out of range";
  1411.                     addword(nextword);
  1412.                     baseo=0;
  1413.                     break;
  1414.                 case 'l':
  1415.                     addword(nextword>>16);
  1416.                     addword(nextword);
  1417.                     baseo=0;
  1418.                     break;
  1419.  
  1420.                 case 'f':
  1421.                     baseo=2;
  1422.                     outro=8;
  1423.                     break;
  1424.                 case 'F':
  1425.                     baseo=4;
  1426.                     outro=11;
  1427.                     break;
  1428.                 case 'x':
  1429.                     baseo=6;
  1430.                     outro=15;
  1431.                     break;
  1432.                 case 'p':
  1433.                     baseo=6;
  1434.                     outro= -1;
  1435.                     break;
  1436.                 default:
  1437.                     as_fatal("Internal error:  Can't decode %c%c",*s,s[1]);
  1438.                 }
  1439.                 if(!baseo)
  1440.                     break;
  1441.  
  1442.                 /* We gotta put out some float */
  1443.                 if(seg(opP->con1)!=SEG_BIG) {
  1444.                     int_to_gen(nextword);
  1445.                     gen_to_words(words,baseo,(long int)outro);
  1446.                     for(wordp=words;baseo--;wordp++)
  1447.                         addword(*wordp);
  1448.                     break;
  1449.                 }        /* Its BIG */
  1450.                 if(offs(opP->con1)>0) {
  1451.                     as_warn("Bignum assumed to be binary bit-pattern");
  1452.                     if(offs(opP->con1)>baseo) {
  1453.                         as_warn("Bignum too big for %c format; truncated",s[1]);
  1454.                         offs(opP->con1)=baseo;
  1455.                     }
  1456.                     baseo-=offs(opP->con1);
  1457.                     for(wordp=generic_bignum+offs(opP->con1)-1;offs(opP->con1)--;--wordp)
  1458.                         addword(*wordp);
  1459.                     while(baseo--)
  1460.                         addword(0);
  1461.                     break;
  1462.                 }
  1463.                 gen_to_words(words,baseo,(long int)outro);
  1464.                 for(wordp=words;baseo--;wordp++)
  1465.                     addword(*wordp);
  1466.                 break;
  1467.             case DREG:
  1468.                 tmpreg=opP->reg-DATA; /* 0.dreg */
  1469.                 break;
  1470.             case AREG:
  1471.                 tmpreg=0x08+opP->reg-ADDR; /* 1.areg */
  1472.                 break;
  1473.             case AINDR:
  1474.                 tmpreg=0x10+opP->reg-ADDR; /* 2.areg */
  1475.                 break;
  1476.             case ADEC:
  1477.                 tmpreg=0x20+opP->reg-ADDR; /* 4.areg */
  1478.                 break;
  1479.             case AINC:
  1480.                 tmpreg=0x18+opP->reg-ADDR; /* 3.areg */
  1481.                 break;
  1482.             case AOFF:
  1483.  
  1484.                 nextword=get_num(opP->con1,80);
  1485.                 /* Force into index mode.  Hope this works */
  1486.  
  1487.                 /* We do the first bit for 32-bit displacements,
  1488.                    and the second bit for 16 bit ones.  It is
  1489.                    possible that we should make the default be
  1490.                    WORD instead of LONG, but I think that'd
  1491.                    break GCC, so we put up with a little
  1492.                    inefficiency for the sake of working output.
  1493.                  */
  1494.  
  1495.                 if(   !issword(nextword)
  1496.                    || (   isvar(opP->con1)
  1497.                        && (  (   opP->con1->e_siz==0
  1498.                           && flagseen['l']==0)
  1499.                        || opP->con1->e_siz==3))) {
  1500.  
  1501.                     if(opP->reg==PC)
  1502.                         tmpreg=0x3B;    /* 7.3 */
  1503.                     else
  1504.                         tmpreg=0x30+opP->reg-ADDR;    /* 6.areg */
  1505.                     if(isvar(opP->con1)) {
  1506.                         if(opP->reg==PC) {
  1507.                                add_frag(adds(opP->con1),
  1508.                              offs(opP->con1),
  1509.                              TAB(PCLEA,SZ_UNDEF));
  1510.                             break;
  1511.                         } else {
  1512.                             addword(0x0170);
  1513.                             add_fix('l',opP->con1,1);
  1514.                         }
  1515.                     } else
  1516.                         addword(0x0170);
  1517.                     addword(nextword>>16);
  1518.                 } else {
  1519.                     if(opP->reg==PC)
  1520.                         tmpreg=0x3A; /* 7.2 */
  1521.                     else
  1522.                         tmpreg=0x28+opP->reg-ADDR; /* 5.areg */
  1523.  
  1524.                     if(isvar(opP->con1)) {
  1525.                         if(opP->reg==PC) {
  1526.                             add_fix('w',opP->con1,1);
  1527.                         } else
  1528.                             add_fix('w',opP->con1,0);
  1529.                         }
  1530.                 }
  1531.                 addword(nextword);
  1532.                 break;
  1533.             case AINDX:
  1534.             case APODX:
  1535.             case AMIND:
  1536.             case APRDX:
  1537.                 nextword=0;
  1538.                 baseo=get_num(opP->con1,80);
  1539.                 outro=get_num(opP->con2,80);
  1540.                     /* Figure out the 'addressing mode' */
  1541.                     /* Also turn on the BASE_DISABLE bit, if needed */
  1542.                 if(opP->reg==PC || opP->reg==ZPC) {
  1543.                     tmpreg=0x3b; /* 7.3 */
  1544.                     if(opP->reg==ZPC)
  1545.                         nextword|=0x80;
  1546.                 } else if(opP->reg==FAIL) {
  1547.                     nextword|=0x80;
  1548.                     tmpreg=0x30;    /* 6.garbage */
  1549.                 } else tmpreg=0x30+opP->reg-ADDR; /* 6.areg */
  1550.  
  1551.                 siz1= (opP->con1) ? opP->con1->e_siz : 0;
  1552.                 siz2= (opP->con2) ? opP->con2->e_siz : 0;
  1553.  
  1554.                     /* Index register stuff */
  1555.                 if(opP->ireg>=DATA+0 && opP->ireg<=ADDR+7) {
  1556.                     nextword|=(opP->ireg-DATA)<<12;
  1557.  
  1558.                     if(opP->isiz==0 || opP->isiz==3)
  1559.                         nextword|=0x800;
  1560.                     switch(opP->imul) {
  1561.                     case 1: break;
  1562.                     case 2: nextword|=0x200; break;
  1563.                     case 4: nextword|=0x400; break;
  1564.                     case 8: nextword|=0x600; break;
  1565.                     default: abort();
  1566.                     }
  1567.                         /* IF its simple,
  1568.                            GET US OUT OF HERE! */
  1569.  
  1570.                         /* Must be INDEX, with an index
  1571.                            register.  Address register
  1572.                            cannot be ZERO-PC, and either
  1573.                            :b was forced, or we know
  1574.                            it will fit */
  1575.                     if(   opP->mode==AINDX
  1576.                        && opP->reg!=FAIL
  1577.                        && opP->reg!=ZPC
  1578.                        && (   siz1==1
  1579.                            || (   issbyte(baseo)
  1580.                            && !isvar(opP->con1)))) {
  1581.                         nextword +=baseo&0xff;
  1582.                         addword(nextword);
  1583.                         if(isvar(opP->con1))
  1584.                             add_fix('B',opP->con1,0);
  1585.                         break;
  1586.                     }
  1587.                 } else
  1588.                     nextword|=0x40;    /* No index reg */
  1589.  
  1590.                     /* It aint simple */
  1591.                 nextword|=0x100;
  1592.                     /* If the guy specified a width, we assume that
  1593.                        it is wide enough.  Maybe it isn't.  Ifso, we lose
  1594.                      */
  1595.                 switch(siz1) {
  1596.                 case 0:
  1597.                     if(isvar(opP->con1) || !issword(baseo)) {
  1598.                         siz1=3;
  1599.                         nextword|=0x30;
  1600.                     } else if(baseo==0)
  1601.                         nextword|=0x10;
  1602.                     else {    
  1603.                         nextword|=0x20;
  1604.                         siz1=2;
  1605.                     }
  1606.                     break;
  1607.                 case 1:
  1608.                     as_warn("Byte dispacement won't work.  Defaulting to :w");
  1609.                 case 2:
  1610.                     nextword|=0x20;
  1611.                     break;
  1612.                 case 3:
  1613.                     nextword|=0x30;
  1614.                     break;
  1615.                 }
  1616.  
  1617.                     /* Figure out innner displacement stuff */
  1618.                 if(opP->mode!=AINDX) {
  1619.                     switch(siz2) {
  1620.                     case 0:
  1621.                         if(isvar(opP->con2) || !issword(outro)) {
  1622.                             siz2=3;
  1623.                             nextword|=0x3;
  1624.                         } else if(outro==0)
  1625.                             nextword|=0x1;
  1626.                         else {    
  1627.                             nextword|=0x2;
  1628.                             siz2=2;
  1629.                         }
  1630.                         break;
  1631.                     case 1:
  1632.                         as_warn("Byte dispacement won't work.  Defaulting to :w");
  1633.                     case 2:
  1634.                         nextword|=0x2;
  1635.                         break;
  1636.                     case 3:
  1637.                         nextword|=0x3;
  1638.                         break;
  1639.                     }
  1640.                     if(opP->mode==APODX) nextword|=0x04;
  1641.                     else if(opP->mode==AMIND) nextword|=0x40;
  1642.                 }
  1643.                 addword(nextword);
  1644.  
  1645.                 if(isvar(opP->con1)) {
  1646.                     if(opP->reg==PC || opP->reg==ZPC) {
  1647.                         add_fix(siz1==3 ? 'l' : 'w',opP->con1,1);
  1648.                         opP->con1->e_exp.X_add_number+=6;
  1649.                     } else
  1650.                         add_fix(siz1==3 ? 'l' : 'w',opP->con1,0);
  1651.                 }
  1652.                 if(siz1==3)
  1653.                     addword(baseo>>16);
  1654.                 if(siz1)
  1655.                     addword(baseo);
  1656.  
  1657.                 if(isvar(opP->con2)) {
  1658.                     if(opP->reg==PC || opP->reg==ZPC) {
  1659.                         add_fix(siz2==3 ? 'l' : 'w',opP->con2,1);
  1660.                         opP->con1->e_exp.X_add_number+=6;
  1661.                     } else
  1662.                         add_fix(siz2==3 ? 'l' : 'w',opP->con2,0);
  1663.                 }
  1664.                 if(siz2==3)
  1665.                     addword(outro>>16);
  1666.                 if(siz2)
  1667.                     addword(outro);
  1668.  
  1669.                 break;
  1670.  
  1671.             case ABSL:
  1672.                 nextword=get_num(opP->con1,80);
  1673.                 switch(opP->con1->e_siz) {
  1674.                 default:
  1675.                     as_warn("Unknown size for absolute reference");
  1676.                 case 0:
  1677.                     if(!isvar(opP->con1) && issword(offs(opP->con1))) {
  1678.                         tmpreg=0x38; /* 7.0 */
  1679.                         addword(nextword);
  1680.                         break;
  1681.                     }
  1682.                     /* Don't generate pc relative code
  1683.                        on 68010 and 68000 */
  1684.                     if(isvar(opP->con1) &&
  1685.                        !subs(opP->con1) &&
  1686.                        seg(opP->con1)==SEG_TEXT &&
  1687.                        now_seg==SEG_TEXT &&
  1688.                        flagseen['m']==0 &&
  1689.                         !index("~%&$?", s[0])) {
  1690.                         tmpreg=0x3A; /* 7.2 */
  1691.                         add_frag(adds(opP->con1),
  1692.                              offs(opP->con1),
  1693.                              TAB(PCREL,SZ_UNDEF));
  1694.                         break;
  1695.                     }
  1696.                 case 3:        /* Fall through into long */
  1697.                     if(isvar(opP->con1))
  1698.                         add_fix('l',opP->con1,0);
  1699.  
  1700.                     tmpreg=0x39;    /* 7.1 mode */
  1701.                     addword(nextword>>16);
  1702.                     addword(nextword);
  1703.                     break;
  1704.  
  1705.                 case 2:        /* Word */
  1706.                     if(isvar(opP->con1))
  1707.                         add_fix('w',opP->con1,0);
  1708.  
  1709.                     tmpreg=0x38;    /* 7.0 mode */
  1710.                     addword(nextword);
  1711.                     break;
  1712.                 }
  1713.                 break;
  1714.             case MSCR:
  1715.             default:
  1716.                 as_bad("unknown/incorrect operand");
  1717.                 /* abort(); */
  1718.             }
  1719.             install_gen_operand(s[1],tmpreg);
  1720.             break;
  1721.  
  1722.         case '#':
  1723.         case '^':
  1724.             switch(s[1]) {    /* JF: I hate floating point! */
  1725.             case 'j':
  1726.                 tmpreg=70;
  1727.                 break;
  1728.             case '8':
  1729.                 tmpreg=20;
  1730.                 break;
  1731.             case 'C':
  1732.                 tmpreg=50;
  1733.                 break;
  1734.             case '3':
  1735.             default:
  1736.                 tmpreg=80;
  1737.                 break;
  1738.             }
  1739.             tmpreg=get_num(opP->con1,tmpreg);
  1740.             if(isvar(opP->con1))
  1741.                 add_fix(s[1],opP->con1,0);
  1742.             switch(s[1]) {
  1743.             case 'b':    /* Danger:  These do no check for
  1744.                        certain types of overflow.
  1745.                        user beware! */
  1746.                 if(!isbyte(tmpreg))
  1747.                     opP->error="out of range";
  1748.                 insop(tmpreg);
  1749.                 if(isvar(opP->con1))
  1750.                     the_ins.reloc[the_ins.nrel-1].n=(opcode->m_codenum)*2;
  1751.                 break;
  1752.             case 'w':
  1753.                 if(!isword(tmpreg))
  1754.                     opP->error="out of range";
  1755.                 insop(tmpreg);
  1756.                 if(isvar(opP->con1))
  1757.                     the_ins.reloc[the_ins.nrel-1].n=(opcode->m_codenum)*2;
  1758.                 break;
  1759.             case 'l':
  1760.                 insop(tmpreg);        /* Because of the way insop works, we put these two out backwards */
  1761.                 insop(tmpreg>>16);
  1762.                 if(isvar(opP->con1))
  1763.                     the_ins.reloc[the_ins.nrel-1].n=(opcode->m_codenum)*2;
  1764.                 break;
  1765.             case '3':
  1766.                 tmpreg&=0xFF;
  1767.             case '8':
  1768.             case 'C':
  1769.                 install_operand(s[1],tmpreg);
  1770.                 break;
  1771.             default:
  1772.                 as_fatal("Internal error:  Unknown mode #%c",s[1]);
  1773.             }
  1774.             break;
  1775.  
  1776.         case '+':
  1777.         case '-':
  1778.         case 'A':
  1779.             install_operand(s[1],opP->reg-ADDR);
  1780.             break;
  1781.  
  1782.         case 'B':
  1783.             tmpreg=get_num(opP->con1,80);
  1784.             switch(s[1]) {
  1785.             case 'g':
  1786.                 if(opP->con1->e_siz) {    /* Deal with fixed size stuff by hand */
  1787.                     switch(opP->con1->e_siz) {
  1788.                     case 1:
  1789.                         add_fix('b',opP->con1,1);
  1790.                         break;
  1791.                     case 2:
  1792.                         add_fix('w',opP->con1,1);
  1793.                         addword(0);
  1794.                         break;
  1795.                     case 3:
  1796.                         add_fix('l',opP->con1,1);
  1797.                         addword(0);
  1798.                         addword(0);
  1799.                         break;
  1800.                     default:
  1801.                         as_fatal("Bad size for expression %d",opP->con1->e_siz);
  1802.                     }
  1803.                 } else if(subs(opP->con1)) {
  1804.                         /* We can't relax it */
  1805.                     the_ins.opcode[the_ins.numo-1]|=0xff;
  1806.                     add_fix('l',opP->con1,1);
  1807.                     addword(0);
  1808.                     addword(0);
  1809.                 } else if(adds(opP->con1)) {
  1810.                     if (flagseen['m'] && 
  1811.                         (the_ins.opcode[0] >= 0x6200) &&
  1812.                         (the_ins.opcode[0] <= 0x6f00)) {
  1813.                       add_frag(adds(opP->con1),offs(opP->con1),TAB(BCC68000,SZ_UNDEF));
  1814.                     } else {
  1815.                         add_frag(adds(opP->con1),offs(opP->con1),TAB(BRANCH,SZ_UNDEF));
  1816.                     }
  1817.                 } else {
  1818.                     /* JF:  This is the WRONG thing to do
  1819.                     add_frag((symbolS *)0,offs(opP->con1),TAB(BRANCH,BYTE)); */
  1820.                     the_ins.opcode[the_ins.numo-1]|=0xff;
  1821.                     offs(opP->con1)+=4;
  1822.                     add_fix('l',opP->con1,1);
  1823.                     addword(0);
  1824.                     addword(0);
  1825.                 }
  1826.                 break;
  1827.             case 'w':
  1828.                 if(isvar(opP->con1)) {
  1829.                     /* check for DBcc instruction */
  1830.                     if ((the_ins.opcode[0] & 0xf0f8) ==0x50c8) {
  1831.                         /* size varies if patch */
  1832.                         /* needed for long form */
  1833.                         add_frag(adds(opP->con1),offs(opP->con1),TAB(DBCC,SZ_UNDEF));
  1834.                         break;
  1835.                     }
  1836.  
  1837.                         /* Don't ask! */
  1838.                     opP->con1->e_exp.X_add_number+=2;
  1839.                     add_fix('w',opP->con1,1);
  1840.                 }
  1841.                 addword(0);
  1842.                 break;
  1843.             case 'c':
  1844.                 if(opP->con1->e_siz) {
  1845.                     switch(opP->con1->e_siz) {
  1846.                     case 2:
  1847.                         add_fix('w',opP->con1,1)
  1848.                         addword(0);
  1849.                         break;
  1850.                     case 3:
  1851.                         the_ins.opcode[the_ins.numo-1]|=0x40;
  1852.                         add_fix('l',opP->con1,1);
  1853.                         addword(0);
  1854.                         addword(0);
  1855.                         break;
  1856.                     default:
  1857.                         as_bad("Bad size for offset, must be word or long");
  1858.                         break;
  1859.                     }
  1860.                 } else if(subs(opP->con1)) {
  1861.                     add_fix('l',opP->con1,1);
  1862.                     add_frag((symbolS *)0,(long)0,TAB(FBRANCH,LONG));
  1863.                 } else if(adds(opP->con1)) {
  1864.                     add_frag(adds(opP->con1),offs(opP->con1),TAB(FBRANCH,SZ_UNDEF));
  1865.                 } else {
  1866.                     /* add_frag((symbolS *)0,offs(opP->con1),TAB(FBRANCH,SHORT)); */
  1867.                     the_ins.opcode[the_ins.numo-1]|=0x40;
  1868.                     add_fix('l',opP->con1,1);
  1869.                     addword(0);
  1870.                     addword(4);
  1871.                 }
  1872.                 break;
  1873.             default:
  1874.                 as_fatal("Internal error:  operand type B%c unknown",s[1]);
  1875.             }
  1876.             break;
  1877.  
  1878.         case 'C':        /* Ignore it */
  1879.             break;
  1880.  
  1881.         case 'd':        /* JF this is a kludge */
  1882.             if(opP->mode==AOFF) {
  1883.                 install_operand('s',opP->reg-ADDR);
  1884.             } else {
  1885.                 char *tmpP;
  1886.  
  1887.                 tmpP=opP->con1->e_end-2;
  1888.                 opP->con1->e_beg++;
  1889.                 opP->con1->e_end-=4;    /* point to the , */
  1890.                 baseo=m68k_reg_parse(&tmpP);
  1891.                 if(baseo<ADDR+0 || baseo>ADDR+7) {
  1892.                     as_bad("Unknown address reg, using A0");
  1893.                     baseo=0;
  1894.                 } else baseo-=ADDR;
  1895.                 install_operand('s',baseo);
  1896.             }
  1897.             tmpreg=get_num(opP->con1,80);
  1898.             if(!issword(tmpreg)) {
  1899.                 as_warn("Expression out of range, using 0");
  1900.                 tmpreg=0;
  1901.             }
  1902.             addword(tmpreg);
  1903.             break;
  1904.  
  1905.         case 'D':
  1906.             install_operand(s[1],opP->reg-DATA);
  1907.             break;
  1908.  
  1909.         case 'F':
  1910.             install_operand(s[1],opP->reg-FPREG);
  1911.             break;
  1912.  
  1913.         case 'I':
  1914.             tmpreg=1+opP->reg-COPNUM;
  1915.             if(tmpreg==8)
  1916.                 tmpreg=0;
  1917.             install_operand(s[1],tmpreg);
  1918.             break;
  1919.  
  1920.         case 'J':        /* JF foo */
  1921.             switch(opP->reg) {
  1922.             case SFC:
  1923.                 tmpreg=0;
  1924.                 break;
  1925.             case DFC:
  1926.                 tmpreg=0x001;
  1927.                 break;
  1928.             case CACR:
  1929.                 tmpreg=0x002;
  1930.                 break;
  1931.             case USP:
  1932.                 tmpreg=0x800;
  1933.                 break;
  1934.             case VBR:
  1935.                 tmpreg=0x801;
  1936.                 break;
  1937.             case CAAR:
  1938.                 tmpreg=0x802;
  1939.                 break;
  1940.             case MSP:
  1941.                 tmpreg=0x803;
  1942.                 break;
  1943.             case ISP:
  1944.                 tmpreg=0x804;
  1945.                 break;
  1946.             default:
  1947.                 abort();
  1948.             }
  1949.             install_operand(s[1],tmpreg);
  1950.             break;
  1951.  
  1952.         case 'k':
  1953.             tmpreg=get_num(opP->con1,55);
  1954.             install_operand(s[1],tmpreg&0x7f);
  1955.             break;
  1956.  
  1957.         case 'l':
  1958.             tmpreg=opP->reg;
  1959.             if(s[1]=='w') {
  1960.                 if(tmpreg&0x7FF0000)
  1961.                     as_bad("Floating point register in register list");
  1962.                 insop(reverse_16_bits(tmpreg));
  1963.             } else {
  1964.                 if(tmpreg&0x700FFFF)
  1965.                     as_bad("Wrong register in floating-point reglist");
  1966.                 install_operand(s[1],reverse_8_bits(tmpreg>>16));
  1967.             }
  1968.             break;
  1969.  
  1970.         case 'L':
  1971.             tmpreg=opP->reg;
  1972.             if(s[1]=='w') {
  1973.                 if(tmpreg&0x7FF0000)
  1974.                     as_bad("Floating point register in register list");
  1975.                 insop(tmpreg);
  1976.             } else if(s[1]=='8') {
  1977.                 if(tmpreg&0x0FFFFFF)
  1978.                     as_bad("incorrect register in reglist");
  1979.                 install_operand(s[1],tmpreg>>24);
  1980.             } else {
  1981.                 if(tmpreg&0x700FFFF)
  1982.                     as_bad("wrong register in floating-point reglist");
  1983.                 else
  1984.                     install_operand(s[1],tmpreg>>16);
  1985.             }
  1986.             break;
  1987.  
  1988.         case 'M':
  1989.             install_operand(s[1],get_num(opP->con1,60));
  1990.             break;
  1991.  
  1992.         case 'O':
  1993.             tmpreg= (opP->mode==DREG)
  1994.                 ? 0x20+opP->reg-DATA
  1995.                 : (get_num(opP->con1,40)&0x1F);
  1996.             install_operand(s[1],tmpreg);
  1997.             break;
  1998.  
  1999.         case 'Q':
  2000.             tmpreg=get_num(opP->con1,10);
  2001.             if(tmpreg==8)
  2002.                 tmpreg=0;
  2003.             install_operand(s[1],tmpreg);
  2004.             break;
  2005.  
  2006.         case 'R':
  2007.             /* This depends on the fact that ADDR registers are
  2008.                eight more than their corresponding DATA regs, so
  2009.                the result will have the ADDR_REG bit set */
  2010.             install_operand(s[1],opP->reg-DATA);
  2011.             break;
  2012.  
  2013.         case 's':
  2014.             if(opP->reg==FPI) tmpreg=0x1;
  2015.             else if(opP->reg==FPS) tmpreg=0x2;
  2016.             else if(opP->reg==FPC) tmpreg=0x4;
  2017.             else abort();
  2018.             install_operand(s[1],tmpreg);
  2019.             break;
  2020.  
  2021.         case 'S':    /* Ignore it */
  2022.             break;
  2023.  
  2024.         case 'T':
  2025.             install_operand(s[1],get_num(opP->con1,30));
  2026.             break;
  2027.  
  2028.         case 'U':    /* Ignore it */
  2029.             break;
  2030.  
  2031. #ifdef MMU
  2032.             /* JF: These are out of order, I fear. */
  2033.         case 'f':
  2034.             switch (opP->reg) {
  2035.             case SFC:
  2036.                 tmpreg=0;
  2037.                 break;
  2038.             case DFC:
  2039.                 tmpreg=1;
  2040.                 break;
  2041.             default:
  2042.                 abort();
  2043.             }
  2044.             install_operand(s[1],tmpreg);
  2045.             break;
  2046.  
  2047.         case 'P':
  2048.             switch(opP->reg) {
  2049.             case TC:
  2050.                 tmpreg=0;
  2051.                 break;
  2052.             case CAL:
  2053.                 tmpreg=4;
  2054.                 break;
  2055.             case VAL:
  2056.                 tmpreg=5;
  2057.                 break;
  2058.             case SCC:
  2059.                 tmpreg=6;
  2060.                 break;
  2061.             case AC:
  2062.                 tmpreg=7;
  2063.                 break;
  2064.             default:
  2065.                 abort();
  2066.             }
  2067.             install_operand(s[1],tmpreg);
  2068.             break;
  2069.  
  2070.         case 'V':
  2071.             if (opP->reg == VAL)
  2072.                 break;
  2073.             abort();
  2074.  
  2075.         case 'W':
  2076.             switch(opP->reg) {
  2077.  
  2078.             case DRP:
  2079.                 tmpreg=1;
  2080.                 break;
  2081.             case SRP:
  2082.                 tmpreg=2;
  2083.                 break;
  2084.             case CRP:
  2085.                 tmpreg=3;
  2086.                 break;
  2087.             default:
  2088.                 abort();
  2089.             }
  2090.             install_operand(s[1],tmpreg);
  2091.             break;
  2092.  
  2093.         case 'X':
  2094.             switch (opP->reg) {
  2095.             case BAD: case BAD+1: case BAD+2: case BAD+3:
  2096.             case BAD+4: case BAD+5: case BAD+6: case BAD+7:
  2097.                 tmpreg = (4 << 10) | ((opP->reg - BAD) << 2);
  2098.                 break;
  2099.  
  2100.             case BAC: case BAC+1: case BAC+2: case BAC+3:
  2101.             case BAC+4: case BAC+5: case BAC+6: case BAC+7:
  2102.                 tmpreg = (5 << 10) | ((opP->reg - BAC) << 2);
  2103.                 break;
  2104.  
  2105.             default:
  2106.                 abort();
  2107.             }
  2108.             install_operand(s[1], tmpreg);
  2109.             break;
  2110.         case 'Y':
  2111.             if (opP->reg == PSR)
  2112.                 break;
  2113.             abort();
  2114.  
  2115.         case 'Z':
  2116.             if (opP->reg == PCSR)
  2117.                 break;
  2118.             abort();
  2119.  
  2120.         case '3':
  2121.             switch (opP->reg) {
  2122.             case TT0:
  2123.               tmpreg = 2;
  2124.               break;
  2125.             case TT1:
  2126.               tmpreg = 3;
  2127.               break;
  2128.             default:
  2129.               abort();
  2130.             }
  2131.             install_operand(s[1], tmpreg);
  2132.             break;
  2133. #endif /* MMU */
  2134.         default:
  2135.             as_fatal("Internal error:  Operand type %c unknown",s[0]);
  2136.         }
  2137.     }
  2138.     /* By the time whe get here (FINALLY) the_ins contains the complete
  2139.        instruction, ready to be emitted. . . */
  2140. }
  2141.  
  2142. int
  2143. get_regs(i,str,opP)
  2144. struct m68k_op *opP;
  2145. char *str;
  2146. {
  2147.     /*                 26, 25, 24, 23-16,  15-8, 0-7 */
  2148.     /* Low order 24 bits encoded fpc,fps,fpi,fp7-fp0,a7-a0,d7-d0 */
  2149.     unsigned long int cur_regs = 0;
  2150.     int    reg1,
  2151.         reg2;
  2152.  
  2153. #define ADD_REG(x)    {     if(x==FPI) cur_regs|=(1<<24);\
  2154.              else if(x==FPS) cur_regs|=(1<<25);\
  2155.              else if(x==FPC) cur_regs|=(1<<26);\
  2156.              else cur_regs|=(1<<(x-1));  }
  2157.  
  2158.     reg1=i;
  2159.     for(;;) {
  2160.         if(*str=='/') {
  2161.             ADD_REG(reg1);
  2162.             str++;
  2163.         } else if(*str=='-') {
  2164.             str++;
  2165.             reg2=m68k_reg_parse(&str);
  2166.             if(reg2<DATA || reg2>=FPREG+8 || reg1==FPI || reg1==FPS || reg1==FPC) {
  2167.                 opP->error="unknown register in register list";
  2168.                 return FAIL;
  2169.             }
  2170.             while(reg1<=reg2) {
  2171.                 ADD_REG(reg1);
  2172.                 reg1++;
  2173.             }
  2174.             if(*str=='\0')
  2175.                 break;
  2176.         } else if(*str=='\0') {
  2177.             ADD_REG(reg1);
  2178.             break;
  2179.         } else {
  2180.             opP->error="unknow character in register list";
  2181.             return FAIL;
  2182.         }
  2183. /* DJA -- Bug Fix.  Did't handle d1-d2/a1 until the following instruction was added */
  2184.         if (*str=='/')
  2185.           str ++;
  2186.         reg1=m68k_reg_parse(&str);
  2187.         if((reg1<DATA || reg1>=FPREG+8) && !(reg1==FPI || reg1==FPS || reg1==FPC)) {
  2188.             opP->error="unknown register in register list";
  2189.             return FAIL;
  2190.         }
  2191.     }
  2192.     opP->reg=cur_regs;
  2193.     return OK;
  2194. }
  2195.  
  2196. int
  2197. reverse_16_bits(in)
  2198. int in;
  2199. {
  2200.     int out=0;
  2201.     int n;
  2202.  
  2203.     static int mask[16] = {
  2204. 0x0001,0x0002,0x0004,0x0008,0x0010,0x0020,0x0040,0x0080,
  2205. 0x0100,0x0200,0x0400,0x0800,0x1000,0x2000,0x4000,0x8000
  2206.     };
  2207.     for(n=0;n<16;n++) {
  2208.         if(in&mask[n])
  2209.             out|=mask[15-n];
  2210.     }
  2211.     return out;
  2212. }
  2213.  
  2214. int
  2215. reverse_8_bits(in)
  2216. int in;
  2217. {
  2218.     int out=0;
  2219.     int n;
  2220.  
  2221.     static int mask[8] = {
  2222. 0x0001,0x0002,0x0004,0x0008,0x0010,0x0020,0x0040,0x0080,
  2223.     };
  2224.  
  2225.     for(n=0;n<8;n++) {
  2226.         if(in&mask[n])
  2227.             out|=mask[7-n];
  2228.     }
  2229.     return out;
  2230. }
  2231.  
  2232. void
  2233. install_operand(mode,val)
  2234. int mode;
  2235. int val;
  2236. {
  2237.     switch(mode) {
  2238.     case 's':
  2239.         the_ins.opcode[0]|=val & 0xFF;    /* JF FF is for M kludge */
  2240.         break;
  2241.     case 'd':
  2242.         the_ins.opcode[0]|=val<<9;
  2243.         break;
  2244.     case '1':
  2245.         the_ins.opcode[1]|=val<<12;
  2246.         break;
  2247.     case '2':
  2248.         the_ins.opcode[1]|=val<<6;
  2249.         break;
  2250.     case '3':
  2251.         the_ins.opcode[1]|=val;
  2252.         break;
  2253.     case '4':
  2254.         the_ins.opcode[2]|=val<<12;
  2255.         break;
  2256.     case '5':
  2257.         the_ins.opcode[2]|=val<<6;
  2258.         break;
  2259.     case '6':
  2260.             /* DANGER!  This is a hack to force cas2l and cas2w cmds
  2261.                to be three words long! */
  2262.         the_ins.numo++;
  2263.         the_ins.opcode[2]|=val;
  2264.         break;
  2265.     case '7':
  2266.         the_ins.opcode[1]|=val<<7;
  2267.         break;
  2268.     case '8':
  2269.         the_ins.opcode[1]|=val<<10;
  2270.         break;
  2271. #ifdef MMU
  2272.     case '9':
  2273.         the_ins.opcode[1]|=val<<5;
  2274.         break;
  2275. #endif
  2276.  
  2277.     case 't':
  2278.         the_ins.opcode[1]|=(val<<10)|(val<<7);
  2279.         break;
  2280.     case 'D':
  2281.         the_ins.opcode[1]|=(val<<12)|val;
  2282.         break;
  2283.     case 'g':
  2284.         the_ins.opcode[0]|=val=0xff;
  2285.         break;
  2286.     case 'i':
  2287.         the_ins.opcode[0]|=val<<9;
  2288.         break;
  2289.     case 'C':
  2290.         the_ins.opcode[1]|=val;
  2291.         break;
  2292.     case 'j':
  2293.         the_ins.opcode[1]|=val;
  2294.         the_ins.numo++;        /* What a hack */
  2295.         break;
  2296.     case 'k':
  2297.         the_ins.opcode[1]|=val<<4;
  2298.         break;
  2299.     case 'b':
  2300.     case 'w':
  2301.     case 'l':
  2302.         break;
  2303.     case 'c':
  2304.     default:
  2305.         abort();
  2306.     }
  2307. }
  2308.  
  2309. void
  2310. install_gen_operand(mode,val)
  2311. int mode;
  2312. int val;
  2313. {
  2314.     switch(mode) {
  2315.     case 's':
  2316.         the_ins.opcode[0]|=val;
  2317.         break;
  2318.     case 'd':
  2319.             /* This is a kludge!!! */
  2320.         the_ins.opcode[0]|=(val&0x07)<<9|(val&0x38)<<3;
  2321.         break;
  2322.     case 'b':
  2323.     case 'w':
  2324.     case 'l':
  2325.     case 'f':
  2326.     case 'F':
  2327.     case 'x':
  2328.     case 'p':
  2329.         the_ins.opcode[0]|=val;
  2330.         break;
  2331.         /* more stuff goes here */
  2332.     default:
  2333.         abort();
  2334.     }
  2335. }
  2336.  
  2337. char *
  2338. crack_operand(str,opP)
  2339. register char *str;
  2340. register struct m68k_op *opP;
  2341. {
  2342.     register int parens;
  2343.     register int c;
  2344.     register char *beg_str;
  2345.  
  2346.     if(!str) {
  2347.         return str;
  2348.     }
  2349.     beg_str=str;
  2350.     for(parens=0;*str && (parens>0 || notend(str));str++) {
  2351.         if(*str=='(') parens++;
  2352.         else if(*str==')') {
  2353.             if(!parens) {        /* ERROR */
  2354.                 opP->error="Extra )";
  2355.                 return str;
  2356.             }
  2357.             --parens;
  2358.         }
  2359.     }
  2360.     if(!*str && parens) {        /* ERROR */
  2361.         opP->error="Missing )";
  2362.         return str;
  2363.     }
  2364.     c= *str;
  2365.     *str='\0';
  2366.     if(m68k_ip_op(beg_str,opP)==FAIL) {
  2367.         *str=c;
  2368.         return str;
  2369.     }
  2370.     *str=c;
  2371.     if(c=='}')
  2372.         c= *++str;        /* JF bitfield hack */
  2373.     if(c) {
  2374.         c= *++str;
  2375.         if(!c)
  2376.             as_bad("Missing operand");
  2377.     }
  2378.     return str;
  2379. }
  2380.  
  2381. /* See the comment up above where the #define notend(... is */
  2382. #if 0
  2383. notend(s)
  2384. char *s;
  2385. {
  2386.     if(*s==',') return 0;
  2387.     if(*s=='{' || *s=='}')
  2388.         return 0;
  2389.     if(*s!=':') return 1;
  2390.         /* This kludge here is for the division cmd, which is a kludge */
  2391.     if(index("aAdD#",s[1])) return 0;
  2392.     return 1;
  2393. }
  2394. #endif
  2395.  
  2396. /* This is the guts of the machine-dependent assembler.  STR points to a
  2397.    machine dependent instruction.  This funciton is supposed to emit
  2398.    the frags/bytes it assembles to.
  2399.  */
  2400. void
  2401. md_assemble(str)
  2402. char *str;
  2403. {
  2404.     char *er;
  2405.     short    *fromP;
  2406.     char    *toP;
  2407.     int    m,n;
  2408.     char    *to_beg_P;
  2409.     int    shorts_this_frag;
  2410.  
  2411.     bzero((char *)(&the_ins),sizeof(the_ins));    /* JF for paranoia sake */
  2412.     m68_ip(str);
  2413.     er=the_ins.error;
  2414.     if(!er) {
  2415.         for(n=the_ins.numargs;n;--n)
  2416.             if(the_ins.operands[n].error) {
  2417.                 er=the_ins.operands[n].error;
  2418.                 break;
  2419.             }
  2420.     }
  2421.     if(er) {
  2422.         as_bad("\"%s\" -- Statement '%s' ignored",er,str);
  2423.         return;
  2424.     }
  2425.  
  2426.     if(the_ins.nfrag==0) {    /* No frag hacking involved; just put it out */
  2427.         toP=frag_more(2*the_ins.numo);
  2428.         fromP= &the_ins.opcode[0];
  2429.         for(m=the_ins.numo;m;--m) {
  2430.             md_number_to_chars(toP,(long)(*fromP),2);
  2431.             toP+=2;
  2432.             fromP++;
  2433.         }
  2434.             /* put out symbol-dependent info */
  2435.         for(m=0;m<the_ins.nrel;m++) {
  2436.             switch(the_ins.reloc[m].wid) {
  2437.             case 'B':
  2438.                 n=1;
  2439.                 break;
  2440.             case 'b':
  2441.                 n=1;
  2442.                 break;
  2443.             case '3':
  2444.                 n=2;
  2445.                 break;
  2446.             case 'w':
  2447.                 n=2;
  2448.                 break;
  2449.             case 'l':
  2450.                 n=4;
  2451.                 break;
  2452.             default:
  2453.                 as_fatal("Don't know how to figure width of %c in md_assemble()",the_ins.reloc[m].wid);
  2454.             }
  2455.  
  2456.             fix_new(frag_now,
  2457.                 (toP-frag_now->fr_literal)-the_ins.numo*2+the_ins.reloc[m].n,
  2458.                 n,
  2459.                 the_ins.reloc[m].add,
  2460.                 the_ins.reloc[m].sub,
  2461.                 the_ins.reloc[m].off,
  2462.                 the_ins.reloc[m].pcrel);
  2463.         }
  2464.         return;
  2465.     }
  2466.  
  2467.         /* There's some frag hacking */
  2468.     for(n=0,fromP= &the_ins.opcode[0];n<the_ins.nfrag;n++) {
  2469.         int wid;
  2470.  
  2471.         if(n==0) wid=2*the_ins.fragb[n].fragoff;
  2472.         else wid=2*(the_ins.numo-the_ins.fragb[n-1].fragoff);
  2473.         toP=frag_more(wid);
  2474.         to_beg_P=toP;
  2475.         shorts_this_frag=0;
  2476.         for(m=wid/2;m;--m) {
  2477.             md_number_to_chars(toP,(long)(*fromP),2);
  2478.             toP+=2;
  2479.             fromP++;
  2480.             shorts_this_frag++;
  2481.         }
  2482.         for(m=0;m<the_ins.nrel;m++) {
  2483.             if((the_ins.reloc[m].n)>= 2*shorts_this_frag /* 2*the_ins.fragb[n].fragoff */) {
  2484.                 the_ins.reloc[m].n-= 2*shorts_this_frag /* 2*the_ins.fragb[n].fragoff */;
  2485.                 break;
  2486.             }
  2487.             wid=the_ins.reloc[m].wid;
  2488.             if(wid==0)
  2489.                 continue;
  2490.             the_ins.reloc[m].wid=0;
  2491.             wid = (wid=='b') ? 1 : (wid=='w') ? 2 : (wid=='l') ? 4 : 4000;
  2492.  
  2493.             fix_new(frag_now,
  2494.                 (toP-frag_now->fr_literal)-the_ins.numo*2+the_ins.reloc[m].n,
  2495.                 wid,
  2496.                 the_ins.reloc[m].add,
  2497.                 the_ins.reloc[m].sub,
  2498.                 the_ins.reloc[m].off,
  2499.                 the_ins.reloc[m].pcrel);
  2500.         }
  2501.         know(the_ins.fragb[n].fadd);
  2502.         (void)frag_var(rs_machine_dependent,10,0,(relax_substateT)(the_ins.fragb[n].fragty),
  2503.  the_ins.fragb[n].fadd,the_ins.fragb[n].foff,to_beg_P);
  2504.     }
  2505.     n=(the_ins.numo-the_ins.fragb[n-1].fragoff);
  2506.     shorts_this_frag=0;
  2507.     if(n) {
  2508.         toP=frag_more(n*sizeof(short));
  2509.         while(n--) {
  2510.             md_number_to_chars(toP,(long)(*fromP),2);
  2511.             toP+=2;
  2512.             fromP++;
  2513.             shorts_this_frag++;
  2514.         }
  2515.     }
  2516.     for(m=0;m<the_ins.nrel;m++) {
  2517.         int wid;
  2518.  
  2519.         wid=the_ins.reloc[m].wid;
  2520.         if(wid==0)
  2521.             continue;
  2522.         the_ins.reloc[m].wid=0;
  2523.         wid = (wid=='b') ? 1 : (wid=='w') ? 2 : (wid=='l') ? 4 : 4000;
  2524.  
  2525.         fix_new(frag_now,
  2526.             (the_ins.reloc[m].n + toP-frag_now->fr_literal)-/* the_ins.numo */ shorts_this_frag*2,
  2527.             wid,
  2528.             the_ins.reloc[m].add,
  2529.             the_ins.reloc[m].sub,
  2530.             the_ins.reloc[m].off,
  2531.             the_ins.reloc[m].pcrel);
  2532.     }
  2533. }
  2534.  
  2535. /* This function is called once, at assembler startup time.  This should
  2536.    set up all the tables, etc that the MD part of the assembler needs
  2537.  */
  2538. void
  2539. md_begin()
  2540. {
  2541. /*
  2542.  * md_begin -- set up hash tables with 68000 instructions.
  2543.  * similar to what the vax assembler does.  ---phr
  2544.  */
  2545.     /* RMS claims the thing to do is take the m68k-opcode.h table, and make
  2546.        a copy of it at runtime, adding in the information we want but isn't
  2547.        there.  I think it'd be better to have an awk script hack the table
  2548.        at compile time.  Or even just xstr the table and use it as-is.  But
  2549.        my lord ghod hath spoken, so we do it this way.  Excuse the ugly var
  2550.        names.  */
  2551.  
  2552.     register struct m68k_opcode *ins;
  2553.     register struct m68_incant *hack,
  2554.         *slak;
  2555.     register char *retval = 0;        /* empty string, or error msg text */
  2556.     register int i;
  2557.     register char c;
  2558.  
  2559.     if ((op_hash = hash_new()) == NULL)
  2560.         as_fatal("Virtual memory exhausted");
  2561.  
  2562.     obstack_begin(&robyn,4000);
  2563.     for (ins = m68k_opcodes; ins < endop; ins++) {
  2564.         hack=slak=(struct m68_incant *)obstack_alloc(&robyn,sizeof(struct m68_incant));
  2565.         do {
  2566.             slak->m_operands=ins->args;
  2567.             slak->m_opnum=strlen(slak->m_operands)/2;
  2568.             slak->m_opcode=ins->opcode;
  2569.                 /* This is kludgey */
  2570.             slak->m_codenum=((ins->match)&0xffffL) ? 2 : 1;
  2571.             if((ins+1)!=endop && !strcmp(ins->name,(ins+1)->name)) {
  2572.                 slak->m_next=(struct m68_incant *)
  2573. obstack_alloc(&robyn,sizeof(struct m68_incant));
  2574.                 ins++;
  2575.             } else
  2576.                 slak->m_next=0;
  2577.             slak=slak->m_next;
  2578.         } while(slak);
  2579.  
  2580.         retval = hash_insert (op_hash, ins->name,(char *)hack);
  2581.             /* Didn't his mommy tell him about null pointers? */
  2582.         if(retval && *retval)
  2583.             as_fatal("Internal Error:  Can't hash %s: %s",ins->name,retval);
  2584.     }
  2585.  
  2586.     for (i = 0; i < sizeof(mklower_table) ; i++)
  2587.         mklower_table[i] = (isupper(c = (char) i)) ? tolower(c) : c;
  2588.  
  2589.     for (i = 0 ; i < sizeof(notend_table) ; i++) {
  2590.         notend_table[i] = 0;
  2591.         alt_notend_table[i] = 0;
  2592.     }
  2593.     notend_table[','] = 1;
  2594.     notend_table['{'] = 1;
  2595.     notend_table['}'] = 1;
  2596.     alt_notend_table['a'] = 1;
  2597.     alt_notend_table['A'] = 1;
  2598.     alt_notend_table['d'] = 1;
  2599.     alt_notend_table['D'] = 1;
  2600.     alt_notend_table['#'] = 1;
  2601.     alt_notend_table['f'] = 1;
  2602.     alt_notend_table['F'] = 1;
  2603. #ifdef REGISTER_PREFIX
  2604.     alt_notend_table[REGISTER_PREFIX] = 1;
  2605. #endif
  2606. }
  2607.  
  2608. #if 0
  2609. #define notend(s) ((*s == ',' || *s == '}' || *s == '{' \
  2610.                    || (*s == ':' && index("aAdD#", s[1]))) \
  2611.                ? 0 : 1)
  2612. #endif
  2613.  
  2614. /* This funciton is called once, before the assembler exits.  It is
  2615.    supposed to do any final cleanup for this part of the assembler.
  2616.  */
  2617. void
  2618. md_end()
  2619. {
  2620. }
  2621.  
  2622. /* Equal to MAX_PRECISION in atof-ieee.c */
  2623. #define MAX_LITTLENUMS 6
  2624.  
  2625. /* Turn a string in input_line_pointer into a floating point constant of type
  2626.    type, and store the appropriate bytes in *litP.  The number of LITTLENUMS
  2627.    emitted is stored in *sizeP .  An error message is returned, or NULL on OK.
  2628.  */
  2629. char *
  2630. md_atof(type,litP,sizeP)
  2631. char type;
  2632. char *litP;
  2633. int *sizeP;
  2634. {
  2635.     int    prec;
  2636.     LITTLENUM_TYPE words[MAX_LITTLENUMS];
  2637.     LITTLENUM_TYPE *wordP;
  2638.     char    *t;
  2639.     char    *atof_ieee();
  2640.  
  2641.     switch(type) {
  2642.     case 'f':
  2643.     case 'F':
  2644.     case 's':
  2645.     case 'S':
  2646.         prec = 2;
  2647.         break;
  2648.  
  2649.     case 'd':
  2650.     case 'D':
  2651.     case 'r':
  2652.     case 'R':
  2653.         prec = 4;
  2654.         break;
  2655.  
  2656.     case 'x':
  2657.     case 'X':
  2658.         prec = 6;
  2659.         break;
  2660.  
  2661.     case 'p':
  2662.     case 'P':
  2663.         prec = 6;
  2664.         break;
  2665.  
  2666.     default:
  2667.         *sizeP=0;
  2668.         return "Bad call to MD_ATOF()";
  2669.     }
  2670.     t=atof_ieee(input_line_pointer,type,words);
  2671.     if(t)
  2672.         input_line_pointer=t;
  2673.  
  2674.     *sizeP=prec * sizeof(LITTLENUM_TYPE);
  2675.     for(wordP=words;prec--;) {
  2676.         md_number_to_chars(litP,(long)(*wordP++),sizeof(LITTLENUM_TYPE));
  2677.         litP+=sizeof(LITTLENUM_TYPE);
  2678.     }
  2679.     return "";    /* Someone should teach Dean about null pointers */
  2680. }
  2681.  
  2682. /* Turn an integer of n bytes (in val) into a stream of bytes appropriate
  2683.    for use in the a.out file, and stores them in the array pointed to by buf.
  2684.    This knows about the endian-ness of the target machine and does
  2685.    THE RIGHT THING, whatever it is.  Possible values for n are 1 (byte)
  2686.    2 (short) and 4 (long)  Floating numbers are put out as a series of
  2687.    LITTLENUMS (shorts, here at least)
  2688.  */
  2689. void
  2690. md_number_to_chars(buf,val,n)
  2691. char    *buf;
  2692. long    val;
  2693. int n;
  2694. {
  2695.     switch(n) {
  2696.     case 1:
  2697.         *buf++=val;
  2698.         break;
  2699.     case 2:
  2700.         *buf++=(val>>8);
  2701.         *buf++=val;
  2702.         break;
  2703.     case 4:
  2704.         *buf++=(val>>24);
  2705.         *buf++=(val>>16);
  2706.         *buf++=(val>>8);
  2707.         *buf++=val;
  2708.         break;
  2709.     default:
  2710.         abort();
  2711.     }
  2712. }
  2713.  
  2714. void
  2715. md_number_to_imm(buf,val,n)
  2716. char *buf;
  2717. long val;
  2718. int n;
  2719. {
  2720.     switch(n) {
  2721.     case 1:
  2722.         *buf++=val;
  2723.         break;
  2724.     case 2:
  2725.         *buf++=(val>>8);
  2726.         *buf++=val;
  2727.         break;
  2728.     case 4:
  2729.         *buf++=(val>>24);
  2730.         *buf++=(val>>16);
  2731.         *buf++=(val>>8);
  2732.         *buf++=val;
  2733.         break;
  2734.     default:
  2735.         abort();
  2736.     }
  2737. }
  2738.  
  2739. void
  2740. md_number_to_disp(buf,val,n)
  2741. char    *buf;
  2742. long    val;
  2743. int n;
  2744. {
  2745.     abort();
  2746. }
  2747.  
  2748. void
  2749. md_number_to_field(buf,val,fix)
  2750. char *buf;
  2751. long val;
  2752. void *fix;
  2753. {
  2754.     abort();
  2755. }
  2756.  
  2757.  
  2758. /* *fragP has been relaxed to its final size, and now needs to have
  2759.    the bytes inside it modified to conform to the new size  There is UGLY
  2760.    MAGIC here. ..
  2761.  */
  2762. void
  2763. md_convert_frag(fragP)
  2764. register fragS *fragP;
  2765. {
  2766.   long disp;
  2767.   long ext;
  2768.  
  2769.   /* Address in gas core of the place to store the displacement.  */
  2770.   register char *buffer_address = fragP -> fr_fix + fragP -> fr_literal;
  2771.   /* Address in object code of the displacement.  */
  2772.   register int object_address = fragP -> fr_fix + fragP -> fr_address;
  2773.  
  2774.   know(fragP->fr_symbol);
  2775.  
  2776.   /* The displacement of the address, from current location.  */
  2777.   disp = (fragP->fr_symbol->sy_value + fragP->fr_offset) - object_address;
  2778.  
  2779.   switch(fragP->fr_subtype) {
  2780.   case TAB(BCC68000,BYTE):
  2781.   case TAB(BRANCH,BYTE):
  2782.     know(issbyte(disp));
  2783.     if(disp==0)
  2784.       as_bad("short branch with zero offset: use :w");
  2785.     fragP->fr_opcode[1]=disp;
  2786.     ext=0;
  2787.     break;
  2788.   case TAB(DBCC,SHORT):
  2789.     know(issword(disp));
  2790.     ext=2;
  2791.     break;
  2792.   case TAB(BCC68000,SHORT):
  2793.   case TAB(BRANCH,SHORT):
  2794.     know(issword(disp));
  2795.     fragP->fr_opcode[1]=0x00;
  2796.     ext=2;
  2797.     break;
  2798.   case TAB(BRANCH,LONG):
  2799.     if(flagseen['m']) {
  2800.       if(fragP->fr_opcode[0]==0x61) {
  2801.     fragP->fr_opcode[0]= 0x4E;
  2802.     fragP->fr_opcode[1]= 0xB9;    /* JBSR with ABSL LONG offset */
  2803.     subseg_change(SEG_TEXT, 0);
  2804.     fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2805.     fragP->fr_fix+=4;
  2806.     ext=0;
  2807.       } else if(fragP->fr_opcode[0]==0x60) {
  2808.         fragP->fr_opcode[0]= 0x4E;
  2809.         fragP->fr_opcode[1]= 0xF9;      /* JMP  with ABSL LONG offset */
  2810.         subseg_change(SEG_TEXT, 0);
  2811.         fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, fragP->fr_offset,0);
  2812.         fragP->fr_fix+=4;
  2813.         ext=0;
  2814.       }else {
  2815.         as_bad("Long branch offset not supported.");
  2816.       }
  2817.     } else {
  2818.       fragP->fr_opcode[1]=0xff;
  2819.       ext=4;
  2820.     }
  2821.     break;
  2822.   case TAB(BCC68000,LONG):
  2823.     /* only Bcc 68000 instructions can come here */
  2824.         /* change bcc into b!cc/jmp absl long */
  2825.     fragP->fr_opcode[0] ^= 0x01; /* invert bcc */
  2826.         fragP->fr_opcode[1] = 0x6;   /* branch offset = 6 */
  2827.  
  2828.     /* JF: these used to be fr_opcode[2,3], but they may be in a
  2829.        different frag, in which case refering to them is a no-no.
  2830.        Only fr_opcode[0,1] are guaranteed to work. */
  2831.         *buffer_address++ = 0x4e;  /* put in jmp long (0x4ef9) */ 
  2832.         *buffer_address++ = 0xf9;  
  2833.         fragP->fr_fix += 2;         /* account for jmp instruction */
  2834.         subseg_change(SEG_TEXT,0);
  2835.         fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, 
  2836.                      fragP->fr_offset,0);
  2837.         fragP->fr_fix += 4;
  2838.         ext=0;
  2839.     break;
  2840.   case TAB(DBCC,LONG):
  2841.         /* only DBcc 68000 instructions can come here */
  2842.         /* change dbcc into dbcc/jmp absl long */
  2843.     /* JF: these used to be fr_opcode[2-7], but that's wrong */
  2844.         *buffer_address++ = 0x00;  /* branch offset = 4 */
  2845.         *buffer_address++ = 0x04;  
  2846.         *buffer_address++ = 0x60;  /* put in bra pc+6 */ 
  2847.         *buffer_address++ = 0x06;  
  2848.         *buffer_address++ = 0x4e;  /* put in jmp long (0x4ef9) */ 
  2849.         *buffer_address++ = 0xf9;  
  2850.  
  2851.         fragP->fr_fix += 6;         /* account for bra/jmp instructions */
  2852.         subseg_change(SEG_TEXT,0);
  2853.         fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, 
  2854.                      fragP->fr_offset,0);
  2855.         fragP->fr_fix += 4;
  2856.         ext=0;
  2857.     break;
  2858.   case TAB(FBRANCH,SHORT):
  2859.     know((fragP->fr_opcode[1]&0x40)==0);
  2860.     ext=2;
  2861.     break;
  2862.   case TAB(FBRANCH,LONG):
  2863.     fragP->fr_opcode[1]|=0x40;    /* Turn on LONG bit */
  2864.     ext=4;
  2865.     break;
  2866.   case TAB(PCREL,SHORT):
  2867.     ext=2;
  2868.     break;
  2869.   case TAB(PCREL,LONG):
  2870.     /* The thing to do here is force it to ABSOLUTE LONG, since
  2871.        PCREL is really trying to shorten an ABSOLUTE address anyway */
  2872.     /* JF FOO This code has not been tested */
  2873.     subseg_change(SEG_TEXT,0);
  2874.     fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2875.     if((fragP->fr_opcode[1] & 0x3F) != 0x3A)
  2876.       as_bad("Internal error (long PC-relative operand) for insn 0x%04lx at 0x%lx",
  2877.             fragP->fr_opcode[0],fragP->fr_address);
  2878.     fragP->fr_opcode[1]&= ~0x3F;
  2879.     fragP->fr_opcode[1]|=0x39;    /* Mode 7.1 */
  2880.     fragP->fr_fix+=4;
  2881.     /* md_number_to_chars(buffer_address,
  2882.                (long)(fragP->fr_symbol->sy_value + fragP->fr_offset),
  2883.                4); */
  2884.     ext=0;
  2885.     break;
  2886.   case TAB(PCLEA,SHORT):
  2887.     subseg_change(SEG_TEXT,0);
  2888.     fix_new(fragP,(int)(fragP->fr_fix),2,fragP->fr_symbol,(symbolS *)0,fragP->fr_offset+2,1);
  2889.     fragP->fr_opcode[1] &= ~0x3F;
  2890.     fragP->fr_opcode[1] |= 0x3A;
  2891.     ext=2;
  2892.     break;
  2893.   case TAB(PCLEA,LONG):
  2894.     subseg_change(SEG_TEXT,0);
  2895.     fix_new(fragP,(int)(fragP->fr_fix)+2,4,fragP->fr_symbol,(symbolS *)0,fragP->fr_offset+2+4,1);
  2896.     *buffer_address++ = 0x01;
  2897.     *buffer_address++ = 0x70;
  2898.     fragP->fr_fix+=2;
  2899.     /* buffer_address+=2; */
  2900.     ext=4;
  2901.     break;
  2902.  
  2903.   }
  2904.   if(ext) {
  2905.     md_number_to_chars(buffer_address,(long)disp,(int)ext);
  2906.     fragP->fr_fix+=ext;
  2907.   }
  2908. }
  2909.  
  2910. /* Force truly undefined symbols to their maximum size, and generally set up
  2911.    the frag list to be relaxed
  2912.  */
  2913. int
  2914. md_estimate_size_before_relax(fragP,segtype)
  2915. register fragS *fragP;
  2916. int segtype;
  2917. {
  2918.     int    old_fix;
  2919.     register char *buffer_address = fragP -> fr_fix + fragP -> fr_literal;
  2920.  
  2921.     old_fix=fragP->fr_fix;
  2922.  
  2923.     /* handle SZ_UNDEF first, it can be changed to BYTE or SHORT */
  2924.     switch(fragP->fr_subtype) {
  2925.     case TAB(BRANCH,SZ_UNDEF):
  2926.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype) {
  2927.             fragP->fr_subtype=TAB(TABTYPE(fragP->fr_subtype),BYTE);
  2928.             break;
  2929.         } else if(flagseen['m']) {
  2930.             if(fragP->fr_opcode[0]==0x61) {
  2931.                 if(flagseen['l']) {
  2932.                     fragP->fr_opcode[0]= 0x4E;
  2933.                     fragP->fr_opcode[1]= 0xB8;    /* JBSR with ABSL WORD offset */
  2934.                     subseg_change(SEG_TEXT, 0);
  2935.                     fix_new(fragP, fragP->fr_fix, 2, 
  2936.                         fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2937.                     fragP->fr_fix+=2;
  2938.                 } else {
  2939.                     fragP->fr_opcode[0]= 0x4E;
  2940.                     fragP->fr_opcode[1]= 0xB9;    /* JBSR with ABSL LONG offset */
  2941.                     subseg_change(SEG_TEXT, 0);
  2942.                     fix_new(fragP, fragP->fr_fix, 4, 
  2943.                         fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2944.                     fragP->fr_fix+=4;
  2945.                 }
  2946.                 frag_wane(fragP);
  2947.             } else if(fragP->fr_opcode[0]==0x60) {
  2948.                 if(flagseen['l']) {
  2949.                     fragP->fr_opcode[0]= 0x4E;
  2950.                     fragP->fr_opcode[1]= 0xF8;    /* JMP    with ABSL WORD offset */
  2951.                     subseg_change(SEG_TEXT, 0);
  2952.                     fix_new(fragP, fragP->fr_fix, 2, 
  2953.                         fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2954.                     fragP->fr_fix+=2;
  2955.                 } else {
  2956.                     fragP->fr_opcode[0]= 0x4E;
  2957.                     fragP->fr_opcode[1]= 0xF9;    /* JMP    with ABSL LONG offset */
  2958.                     subseg_change(SEG_TEXT, 0);
  2959.                     fix_new(fragP, fragP->fr_fix, 4, 
  2960.                         fragP->fr_symbol, 0, fragP->fr_offset, 0);
  2961.                     fragP->fr_fix+=4;
  2962.                 }
  2963.                 frag_wane(fragP);
  2964.             } else {
  2965.                 as_warn("Long branch offset to extern symbol not supported.");
  2966.             }
  2967.         } else if(flagseen['l']) {    /* Symbol is still undefined.  Make it simple */
  2968.             fix_new(fragP,(int)(fragP->fr_fix),2,fragP->fr_symbol,
  2969.  (symbolS *)0,fragP->fr_offset + 2,1);
  2970.             fragP->fr_fix+=2;
  2971.             fragP->fr_opcode[1]=0x00;
  2972.             frag_wane(fragP);
  2973.         } else {
  2974.             fix_new(fragP,(int)(fragP->fr_fix),4,fragP->fr_symbol,
  2975.  (symbolS *)0,fragP->fr_offset + 4,1);
  2976.             fragP->fr_fix+=4;
  2977.             fragP->fr_opcode[1]=0xff;
  2978.             frag_wane(fragP);
  2979.             break;
  2980.         }
  2981.         break;
  2982.  
  2983.     case TAB(FBRANCH,SZ_UNDEF):
  2984.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype || flagseen['l']) {
  2985.             fragP->fr_subtype=TAB(FBRANCH,SHORT);
  2986.             fragP->fr_var+=2;
  2987.         } else {
  2988.             fragP->fr_subtype=TAB(FBRANCH,LONG);
  2989.             fragP->fr_var+=4;
  2990.         }
  2991.         break;
  2992.  
  2993.     case TAB(PCREL,SZ_UNDEF):
  2994.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype || flagseen['l']) {
  2995.             fragP->fr_subtype=TAB(PCREL,SHORT);
  2996.             fragP->fr_var+=2;
  2997.         } else {
  2998.             fragP->fr_subtype=TAB(PCREL,LONG);
  2999.             fragP->fr_var+=4;
  3000.         }
  3001.         break;
  3002.  
  3003.     case TAB(BCC68000,SZ_UNDEF):
  3004.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype) {
  3005.             fragP->fr_subtype=TAB(BCC68000,BYTE);
  3006.             break;
  3007.         }
  3008.         /* only Bcc 68000 instructions can come here */
  3009.         /* change bcc into b!cc/jmp absl long */
  3010.         fragP->fr_opcode[0] ^= 0x01; /* invert bcc */
  3011.         if(flagseen['l']) {
  3012.             fragP->fr_opcode[1] = 0x04;   /* branch offset = 6 */
  3013.             /* JF: these were fr_opcode[2,3] */
  3014.             buffer_address[0] = 0x4e;  /* put in jmp long (0x4ef9) */ 
  3015.             buffer_address[1] = 0xf8;
  3016.             fragP->fr_fix += 2;         /* account for jmp instruction */
  3017.             subseg_change(SEG_TEXT,0);
  3018.             fix_new(fragP, fragP->fr_fix, 2, fragP->fr_symbol, 0, 
  3019.                              fragP->fr_offset,0);
  3020.             fragP->fr_fix += 2;
  3021.         } else {
  3022.             fragP->fr_opcode[1] = 0x06;   /* branch offset = 6 */
  3023.             /* JF: these were fr_opcode[2,3] */
  3024.             buffer_address[2] = 0x4e;  /* put in jmp long (0x4ef9) */ 
  3025.             buffer_address[3] = 0xf9;
  3026.             fragP->fr_fix += 2;         /* account for jmp instruction */
  3027.             subseg_change(SEG_TEXT,0);
  3028.             fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, 
  3029.                              fragP->fr_offset,0);
  3030.             fragP->fr_fix += 4;
  3031.         }
  3032.         frag_wane(fragP);
  3033.         break;
  3034.  
  3035.     case TAB(DBCC,SZ_UNDEF):
  3036.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype) {
  3037.             fragP->fr_subtype=TAB(DBCC,SHORT);
  3038.             fragP->fr_var+=2;
  3039.             break;
  3040.         }
  3041.         /* only DBcc 68000 instructions can come here */
  3042.         /* change dbcc into dbcc/jmp absl long */
  3043.         /* JF: these used to be fr_opcode[2-4], which is wrong. */
  3044.         buffer_address[0] = 0x00;  /* branch offset = 4 */
  3045.         buffer_address[1] = 0x04;  
  3046.         buffer_address[2] = 0x60;  /* put in bra pc + ... */ 
  3047.         if(flagseen['l']) {
  3048.             /* JF: these were fr_opcode[5-7] */
  3049.             buffer_address[3] = 0x04; /* plus 4 */
  3050.             buffer_address[4] = 0x4e;/* Put in Jump Word */
  3051.             buffer_address[5] = 0xf8;
  3052.             fragP->fr_fix += 6;      /* account for bra/jmp instruction */
  3053.             subseg_change(SEG_TEXT,0);
  3054.             fix_new(fragP, fragP->fr_fix, 2, fragP->fr_symbol, 0, 
  3055.                              fragP->fr_offset,0);
  3056.             fragP->fr_fix+=2;
  3057.         } else {
  3058.             /* JF: these were fr_opcode[5-7] */
  3059.             buffer_address[3] = 0x06;  /* Plus 6 */
  3060.             buffer_address[4] = 0x4e;  /* put in jmp long (0x4ef9) */ 
  3061.             buffer_address[5] = 0xf9;  
  3062.             fragP->fr_fix += 6;      /* account for bra/jmp instruction */
  3063.             subseg_change(SEG_TEXT,0);
  3064.             fix_new(fragP, fragP->fr_fix, 4, fragP->fr_symbol, 0, 
  3065.                              fragP->fr_offset,0);
  3066.             fragP->fr_fix += 4;
  3067.         }
  3068.         frag_wane(fragP);
  3069.         break;
  3070.  
  3071.     case TAB(PCLEA,SZ_UNDEF):
  3072.         if((fragP->fr_symbol->sy_type&N_TYPE)==segtype || flagseen['l']) {
  3073.             fragP->fr_subtype=TAB(PCLEA,SHORT);
  3074.             fragP->fr_var+=2;
  3075.         } else {
  3076.             fragP->fr_subtype=TAB(PCLEA,LONG);
  3077.             fragP->fr_var+=6;
  3078.         }
  3079.         break;
  3080.  
  3081.     default:
  3082.         break;
  3083.     }
  3084.  
  3085.     /* now that SZ_UNDEF are taken care of, check others */
  3086.     switch(fragP->fr_subtype) {
  3087.     case TAB(BCC68000,BYTE):
  3088.     case TAB(BRANCH,BYTE):
  3089.             /* We can't do a short jump to the next instruction,
  3090.                so we force word mode.  */
  3091.         if(fragP->fr_symbol && fragP->fr_symbol->sy_value==0 &&
  3092.  fragP->fr_symbol->sy_frag==fragP->fr_next) {
  3093.             fragP->fr_subtype=TAB(TABTYPE(fragP->fr_subtype),SHORT);
  3094.             fragP->fr_var+=2;
  3095.         }
  3096.         break;
  3097.     default:
  3098.         break;
  3099.     }
  3100.     return fragP->fr_var + fragP->fr_fix - old_fix;
  3101. }
  3102.  
  3103. /* the bit-field entries in the relocation_info struct plays hell 
  3104.    with the byte-order problems of cross-assembly.  So as a hack,
  3105.    I added this mach. dependent ri twiddler.  Ugly, but it gets
  3106.    you there. -KWK */
  3107. /* on m68k: first 4 bytes are normal unsigned long, next three bytes
  3108. are symbolnum, most sig. byte first.  Last byte is broken up with
  3109. bit 7 as pcrel, bits 6 & 5 as length, bit 4 as pcrel, and the lower
  3110. nibble as nuthin. (on Sun 3 at least) */
  3111. void
  3112. md_ri_to_chars(ri_p, ri)
  3113.      struct relocation_info *ri_p, ri;
  3114. {
  3115.   unsigned char the_bytes[8];
  3116.  
  3117.   /* this is easy */
  3118.   md_number_to_chars(the_bytes, ri.r_address, sizeof(ri.r_address));
  3119.   /* now the fun stuff */
  3120.   the_bytes[4] = (ri.r_symbolnum >> 16) & 0x0ff;
  3121.   the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
  3122.   the_bytes[6] = ri.r_symbolnum & 0x0ff;
  3123.   the_bytes[7] = (((ri.r_pcrel << 7)  & 0x80) | ((ri.r_length << 5) & 0x60) | 
  3124.     ((ri.r_extern << 4)  & 0x10)); 
  3125.   /* now put it back where you found it */
  3126.   bcopy (the_bytes, (char *)ri_p, sizeof(struct relocation_info));
  3127. }
  3128.  
  3129. #ifndef WORKING_DOT_WORD
  3130. const int md_short_jump_size = 4;
  3131. const int md_long_jump_size = 6;
  3132.  
  3133. void
  3134. md_create_short_jump(ptr,from_addr,to_addr,frag,to_symbol)
  3135. char    *ptr;
  3136. long    from_addr,
  3137.     to_addr;
  3138. fragS    *frag;
  3139. symbolS    *to_symbol;
  3140. {
  3141.     long offset;
  3142.  
  3143.     offset = to_addr - (from_addr+2);
  3144.  
  3145.     md_number_to_chars(ptr  ,(long)0x6000,2);
  3146.     md_number_to_chars(ptr+2,(long)offset,2);
  3147. }
  3148.  
  3149. void
  3150. md_create_long_jump(ptr,from_addr,to_addr,frag,to_symbol)
  3151. char    *ptr;
  3152. long    from_addr,
  3153.     to_addr;
  3154. fragS    *frag;
  3155. symbolS    *to_symbol;
  3156. {
  3157.     long offset;
  3158.  
  3159.     if(flagseen['m']) {
  3160.         offset=to_addr-to_symbol->sy_value;
  3161.         md_number_to_chars(ptr  ,(long)0x4EF9,2);
  3162.         md_number_to_chars(ptr+2,(long)offset,4);
  3163.         fix_new(frag,(ptr+2)-frag->fr_literal,4,to_symbol,(symbolS *)0,(long int)0,0);
  3164.     } else {
  3165.         offset=to_addr - (from_addr+2);
  3166.         md_number_to_chars(ptr  ,(long)0x60ff,2);
  3167.         md_number_to_chars(ptr+2,(long)offset,4);
  3168.     }
  3169. }
  3170.  
  3171. #endif
  3172. /* Different values of OK tell what its OK to return.  Things that aren't OK are an error (what a shock, no?)
  3173.  
  3174.     0:  Everything is OK
  3175.     10:  Absolute 1:8    only
  3176.     20:  Absolute 0:7    only
  3177.     30:  absolute 0:15    only
  3178.     40:  Absolute 0:31    only
  3179.     50:  absolute 0:127    only
  3180.     55:  absolute -64:63    only
  3181.     60:  absolute -128:127    only
  3182.     70:  absolute 0:4095    only
  3183.     80:  No bignums
  3184.  
  3185. */
  3186. int
  3187. get_num(exp,ok)
  3188. struct m68k_exp *exp;
  3189. int ok;
  3190. {
  3191. #ifdef TEST2
  3192.     long    l = 0;
  3193.  
  3194.     if(!exp->e_beg)
  3195.         return 0;
  3196.     if(*exp->e_beg=='0') {
  3197.         if(exp->e_beg[1]=='x')
  3198.             sscanf(exp->e_beg+2,"%x",&l);
  3199.         else
  3200.             sscanf(exp->e_beg+1,"%O",&l);
  3201.         return l;
  3202.     }
  3203.     return atol(exp->e_beg);
  3204. #else
  3205.     char    *save_in;
  3206.     char    c_save;
  3207.  
  3208.     if(!exp) {
  3209.         /* Can't do anything */
  3210.         return 0;
  3211.     }
  3212.     if(!exp->e_beg || !exp->e_end) {
  3213.         seg(exp)=SEG_ABSOLUTE;
  3214.         adds(exp)=0;
  3215.         subs(exp)=0;
  3216.         offs(exp)= (ok==10) ? 1 : 0;
  3217.         as_warn("Null expression defaults to %ld",offs(exp));
  3218.         return 0;
  3219.     }
  3220.  
  3221.     exp->e_siz=0;
  3222.     if(/* ok!=80 && */exp->e_end[-1]==':' && (exp->e_end-exp->e_beg)>=2) {
  3223.         switch(exp->e_end[0]) {
  3224.         case 's':
  3225.         case 'S':
  3226.         case 'b':
  3227.         case 'B':
  3228.             exp->e_siz=1;
  3229.             break;
  3230.         case 'w':
  3231.         case 'W':
  3232.             exp->e_siz=2;
  3233.             break;
  3234.         case 'l':
  3235.         case 'L':
  3236.             exp->e_siz=3;
  3237.             break;
  3238.         default:
  3239.             as_bad("Unknown size for expression \"%c\"",exp->e_end[0]);
  3240.         }
  3241.         exp->e_end-=2;
  3242.     }
  3243.     c_save=exp->e_end[1];
  3244.     exp->e_end[1]='\0';
  3245.     save_in=input_line_pointer;
  3246.     input_line_pointer=exp->e_beg;
  3247.     switch(expression(&(exp->e_exp))) {
  3248.     case SEG_PASS1:
  3249.         seg(exp)=SEG_ABSOLUTE;
  3250.         adds(exp)=0;
  3251.         subs(exp)=0;
  3252.         offs(exp)= (ok==10) ? 1 : 0;
  3253.         as_warn("Unknown expression: '%s' defaulting to %d",exp->e_beg,offs(exp));
  3254.         break;
  3255.  
  3256.     case SEG_NONE:
  3257.         /* Do the same thing the VAX asm does */
  3258.         seg(exp)=SEG_ABSOLUTE;
  3259.         adds(exp)=0;
  3260.         subs(exp)=0;
  3261.         offs(exp)=0;
  3262.         if(ok==10) {
  3263.             as_warn("expression out of range: defaulting to 1");
  3264.             offs(exp)=1;
  3265.         }
  3266.         break;
  3267.     case SEG_ABSOLUTE:
  3268.         switch(ok) {
  3269.         case 10:
  3270.             if(offs(exp)<1 || offs(exp)>8) {
  3271.                 as_warn("expression out of range: defaulting to 1");
  3272.                 offs(exp)=1;
  3273.             }
  3274.             break;
  3275.         case 20:
  3276.             if(offs(exp)<0 || offs(exp)>7)
  3277.                 goto outrange;
  3278.             break;
  3279.         case 30:
  3280.             if(offs(exp)<0 || offs(exp)>15)
  3281.                 goto outrange;
  3282.             break;
  3283.         case 40:
  3284.             if(offs(exp)<0 || offs(exp)>32)
  3285.                 goto outrange;
  3286.             break;
  3287.         case 50:
  3288.             if(offs(exp)<0 || offs(exp)>127)
  3289.                 goto outrange;
  3290.             break;
  3291.         case 55:
  3292.             if(offs(exp)<-64 || offs(exp)>63)
  3293.                 goto outrange;
  3294.             break;
  3295.         case 60:
  3296.             if(offs(exp)<-128 || offs(exp)>127)
  3297.                 goto outrange;
  3298.             break;
  3299.         case 70:
  3300.             if(offs(exp)<0 || offs(exp)>4095) {
  3301.             outrange:
  3302.                 as_warn("expression out of range: defaulting to 0");
  3303.                 offs(exp)=0;
  3304.             }
  3305.             break;
  3306.         default:
  3307.             break;
  3308.         }
  3309.         break;
  3310.     case SEG_TEXT:
  3311.     case SEG_DATA:
  3312.     case SEG_BSS:
  3313.     case SEG_UNKNOWN:
  3314.     case SEG_DIFFERENCE:
  3315.         if(ok>=10 && ok<=70) {
  3316.             seg(exp)=SEG_ABSOLUTE;
  3317.             adds(exp)=0;
  3318.             subs(exp)=0;
  3319.             offs(exp)= (ok==10) ? 1 : 0;
  3320.             as_warn("Can't deal with expression \"%s\": defaulting to %ld",exp->e_beg,offs(exp));
  3321.         }
  3322.         break;
  3323.     case SEG_BIG:
  3324.         if(ok==80 && offs(exp)<0) {    /* HACK! Turn it into a long */
  3325.             LITTLENUM_TYPE words[6];
  3326.  
  3327.             gen_to_words(words,2,8L);/* These numbers are magic! */
  3328.             seg(exp)=SEG_ABSOLUTE;
  3329.             adds(exp)=0;
  3330.             subs(exp)=0;
  3331.             offs(exp)=words[1]|(words[0]<<16);
  3332.         } else if(ok!=0) {
  3333.             seg(exp)=SEG_ABSOLUTE;
  3334.             adds(exp)=0;
  3335.             subs(exp)=0;
  3336.             offs(exp)= (ok==10) ? 1 : 0;
  3337.             as_warn("Can't deal with expression \"%s\": defaulting to %ld",exp->e_beg,offs(exp));
  3338.         }
  3339.         break;
  3340.     default:
  3341.         abort();
  3342.     }
  3343.     if(input_line_pointer!=exp->e_end+1)
  3344.         as_bad("Ignoring junk after expression");
  3345.     exp->e_end[1]=c_save;
  3346.     input_line_pointer=save_in;
  3347.     if(exp->e_siz) {
  3348.         switch(exp->e_siz) {
  3349.         case 1:
  3350.             if(!isbyte(offs(exp)))
  3351.                 as_warn("expression doesn't fit in BYTE");
  3352.             break;
  3353.         case 2:
  3354.             if(!isword(offs(exp)))
  3355.                 as_warn("expression doesn't fit in WORD");
  3356.             break;
  3357.         }
  3358.     }
  3359.     return offs(exp);
  3360. #endif
  3361. }
  3362.  
  3363. /* These are the back-ends for the various machine dependent pseudo-ops.  */
  3364. void demand_empty_rest_of_line();    /* Hate those extra verbose names */
  3365.  
  3366. void
  3367. s_data1()
  3368. {
  3369.     subseg_new(SEG_DATA,1);
  3370.     demand_empty_rest_of_line();
  3371. }
  3372.  
  3373. void
  3374. s_data2()
  3375. {
  3376.     subseg_new(SEG_DATA,2);
  3377.     demand_empty_rest_of_line();
  3378. }
  3379.  
  3380. void
  3381. s_even()
  3382. {
  3383.     register int temp;
  3384.     register long int temp_fill;
  3385.  
  3386.     temp = 1;        /* JF should be 2? */
  3387.     temp_fill = get_absolute_expression ();
  3388.     if ( ! need_pass_2 ) /* Never make frag if expect extra pass. */
  3389.         frag_align (temp, (int)temp_fill);
  3390.     demand_empty_rest_of_line();
  3391. }
  3392.  
  3393. void
  3394. s_proc()
  3395. {
  3396.     demand_empty_rest_of_line();
  3397. }
  3398.  
  3399. /* s_space is defined in read.c .skip is simply an alias to it. */
  3400.  
  3401. int
  3402. md_parse_option(argP,cntP,vecP)
  3403. char **argP;
  3404. int *cntP;
  3405. char ***vecP;
  3406. {
  3407.     switch(**argP) {
  3408.     case 'l':    /* -l means keep external to 2 bit offset
  3409.                rather than 16 bit one */
  3410.         break;
  3411.  
  3412.     case 'm':
  3413.         /* Gas almost ignores this option! */
  3414.         (*argP)++;
  3415.         if(**argP=='c')
  3416.             (*argP)++;
  3417.         if(!strcmp(*argP,"68000"))
  3418.             flagseen['m']=2;
  3419.         else if(!strcmp(*argP,"68010")) {
  3420. #ifdef M_SUN
  3421.             omagic= 1<<16|OMAGIC;
  3422. #endif
  3423.             flagseen['m']=1;
  3424.         } else if(!strcmp(*argP,"68020"))
  3425.             flagseen['m']=0;
  3426.         else
  3427.             as_warn("Unknown -m option ignored");
  3428.         while(**argP)
  3429.             (*argP)++;
  3430.         break;
  3431.  
  3432.     default:
  3433.         return 0;
  3434.     }
  3435.     return 1;
  3436. }
  3437.  
  3438.  
  3439. #ifdef TEST2
  3440.  
  3441. /* TEST2:  Test md_assemble() */
  3442. /* Warning, this routine probably doesn't work anymore */
  3443.  
  3444. main()
  3445. {
  3446.     struct m68_it the_ins;
  3447.     char buf[120];
  3448.     char *cp;
  3449.     int    n;
  3450.  
  3451.     m68_ip_begin();
  3452.     for(;;) {
  3453.         if(!gets(buf) || !*buf)
  3454.             break;
  3455.         if(buf[0]=='|' || buf[1]=='.')
  3456.             continue;
  3457.         for(cp=buf;*cp;cp++)
  3458.             if(*cp=='\t')
  3459.                 *cp=' ';
  3460.         if(is_label(buf))
  3461.             continue;
  3462.         bzero(&the_ins,sizeof(the_ins));
  3463.         m68_ip(&the_ins,buf);
  3464.         if(the_ins.error) {
  3465.             printf("Error %s in %s\n",the_ins.error,buf);
  3466.         } else {
  3467.             printf("Opcode(%d.%s): ",the_ins.numo,the_ins.args);
  3468.             for(n=0;n<the_ins.numo;n++)
  3469.                 printf(" 0x%x",the_ins.opcode[n]&0xffff);
  3470.             printf("    ");
  3471.             print_the_insn(&the_ins.opcode[0],stdout);
  3472.             (void)putchar('\n');
  3473.         }
  3474.         for(n=0;n<strlen(the_ins.args)/2;n++) {
  3475.             if(the_ins.operands[n].error) {
  3476.                 printf("op%d Error %s in %s\n",n,the_ins.operands[n].error,buf);
  3477.                 continue;
  3478.             }
  3479.             printf("mode %d, reg %d, ",the_ins.operands[n].mode,the_ins.operands[n].reg);
  3480.             if(the_ins.operands[n].b_const)
  3481.                 printf("Constant: '%.*s', ",1+the_ins.operands[n].e_const-the_ins.operands[n].b_const,the_ins.operands[n].b_const);
  3482.             printf("ireg %d, isiz %d, imul %d, ",the_ins.operands[n].ireg,the_ins.operands[n].isiz,the_ins.operands[n].imul);
  3483.             if(the_ins.operands[n].b_iadd)
  3484.                 printf("Iadd: '%.*s',",1+the_ins.operands[n].e_iadd-the_ins.operands[n].b_iadd,the_ins.operands[n].b_iadd);
  3485.             (void)putchar('\n');
  3486.         }
  3487.     }
  3488.     m68_ip_end();
  3489.     return 0;
  3490. }
  3491.  
  3492. is_label(str)
  3493. char *str;
  3494. {
  3495.     while(*str==' ')
  3496.         str++;
  3497.     while(*str && *str!=' ')
  3498.         str++;
  3499.     if(str[-1]==':' || str[1]=='=')
  3500.         return 1;
  3501.     return 0;
  3502. }
  3503.  
  3504. #endif
  3505.  
  3506. /* Possible states for relaxation:
  3507.  
  3508. 0 0    branch offset    byte    (bra, etc)
  3509. 0 1            word
  3510. 0 2            long
  3511.  
  3512. 1 0    indexed offsets    byte    a0@(32,d4:w:1) etc
  3513. 1 1            word
  3514. 1 2            long
  3515.  
  3516. 2 0    two-offset index word-word a0@(32,d4)@(45) etc
  3517. 2 1            word-long
  3518. 2 2            long-word
  3519. 2 3            long-long
  3520.  
  3521. */
  3522.  
  3523.  
  3524.  
  3525. #ifdef DONTDEF
  3526. abort()
  3527. {
  3528.     printf("ABORT!\n");
  3529.     exit(12);
  3530. }
  3531.  
  3532. char *index(s,c)
  3533. char *s;
  3534. {
  3535.     while(*s!=c) {
  3536.         if(!*s) return 0;
  3537.         s++;
  3538.     }
  3539.     return s;
  3540. }
  3541.  
  3542. bzero(s,n)
  3543. char *s;
  3544. {
  3545.     while(n--)
  3546.         *s++=0;
  3547. }
  3548.  
  3549. print_frags()
  3550. {
  3551.     fragS *fragP;
  3552.     extern fragS *text_frag_root;
  3553.  
  3554.     for(fragP=text_frag_root;fragP;fragP=fragP->fr_next) {
  3555.         printf("addr %lu  next 0x%x  fix %ld  var %ld  symbol 0x%x  offset %ld\n",
  3556.  fragP->fr_address,fragP->fr_next,fragP->fr_fix,fragP->fr_var,fragP->fr_symbol,fragP->fr_offset);
  3557.         printf("opcode 0x%x  type %d  subtype %d\n\n",fragP->fr_opcode,fragP->fr_type,fragP->fr_subtype);
  3558.     }
  3559.     fflush(stdout);
  3560.     return 0;
  3561. }
  3562. #endif
  3563.  
  3564. #ifdef DONTDEF
  3565. /*VARARGS1*/
  3566. panic(format,args)
  3567. char *format;
  3568. {
  3569.     fputs("Internal error:",stderr);
  3570.     _doprnt(format,&args,stderr);
  3571.     (void)putc('\n',stderr);
  3572.     as_where();
  3573.     abort();
  3574. }
  3575. #endif
  3576.